
body {
    font-family: 'Nunito', 'Nunito sans';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; /* Adjusted from 80vh */
    min-height: 80vh; /* Ensures it still takes up space */
    margin: 40px 0; /* Adds margin on top and bottom */
}

.auth-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
    
}

.auth-box h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #057DCD;
}

.auth-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.auth-box label,
.auth-box input {
    width: 100%;
}

.auth-box input {
    display: block;
}

.auth-box label {
    display: block;
    text-align: left;
    font-weight: 600;
    margin: 10px 0 5px;
}

.auth-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    align-items: center;
}

.auth-box .btn {
    width: 100%;
    background-color:#1E3D58;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin:30px 0 40px 0;
    
}

.auth-box .btn:hover {
    background-color: #0056b3;
}

.divider {
    margin: 15px 0;
    text-transform: uppercase;
    font-size: 0.9em;
    color: #666;
    position: relative;
}

.google-auth {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.google-auth img {
    width: 20px;
    margin-right: 10px;
}