html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    background-color: darkgray;
    margin: 0;
    font-family: Arial, sans-serif;
}

.auth-container {
    width: 90%;
    max-width: 400px;
    background: lightgray;
    padding: 20px;
    margin: 0 2px;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: calc(100dvh - 45px);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .auth-container img {
        width: 75%;
        height: auto;
        margin-bottom: 20px;
    }
    
.input-container {
    width: 100%;
    margin: 5px 0;
}

    .input-container input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 20px;
        box-sizing: border-box;
        background-color: #f9f9f9;
    }
    
.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

button {
    width: 100%;
    padding: 10px;
    background: #ffb400;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

    button:hover {
        background: #0056b3;
    }
    
.nav-link {
    display: block;
    margin-top: 10px;
    color: #646464;
    text-decoration: none;
}

form {
    width: 85%;
}