/* Custom styles for authentication pages */

.login-page, 
.register-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f6f9;
}

.login-box,
.register-box {
    width: 360px;
    margin: 0 auto;
}

.login-logo,
.register-logo {
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 300;
}

.login-logo a,
.register-logo a {
    color: #495057;
}

.login-card-body,
.register-card-body {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.login-box-msg,
.register-box-msg {
    margin: 0;
    text-align: center;
    padding: 0 20px 20px 20px;
}

.input-group-text {
    background-color: transparent;
    border-left: 0;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.text-danger {
    color: #dc3545 !important;
    font-size: 80%;
    margin-top: -10px;
    margin-bottom: 10px;
}

.social-auth-links {
    margin: 10px 0;
    text-align: center;
}

.social-auth-links p {
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-box,
    .register-box {
        width: 90%;
    }
} 