.auth-page_container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}



.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.error-msg {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #3B82F6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 15px;
}

.login-btn:hover {
    background-color: #2563eb;
}

.alt-signin-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: #6b7280;
    font-size: 14px;
}

.alt-signin-divider::before,
.alt-signin-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #e5e7eb;
}

.alt-signin-divider::before {
    left: 0;
}

.alt-signin-divider::after {
    right: 0;
}

.google-login-btn {
    width: 100%;
    padding: 12px;
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.google-login-btn:hover {
    background-color: #f9fafb;
}

.google-btn-logo {
    width: 20px;
    height: 20px;
}

.signup-link-container {
    text-align: center;
    margin-top: 20px;
    color: #6b7280;
    font-size: 14px;
}

.signup-link-container a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 500;
}

.signup-link-container a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-form-container {
        padding: 20px;
        margin: 10px;
    }
    
    .auth-page_container {
        padding: 10px;
        align-items: flex-start;
        padding-top: 40px;
    }
}
