/* Auth Pages Styles */
.auth-body {
    background: linear-gradient(135deg, #8B6B61, #5D4037);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.auth-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 30px;
}

.auth-header {
    margin-bottom: 30px;
}

.auth-header h2 {
    color: #5D4037;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-header p {
    color: #757575;
}

.auth-footer {
    margin-top: 20px;
    font-size: 14px;
}

.auth-footer a {
    color: #8B6B61;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-control {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    padding-left: 15px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #8B6B61;
    box-shadow: 0 0 0 0.25rem rgba(139, 107, 97, 0.25);
}

.input-group-text {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
}

.form-check-input:checked {
    background-color: #8B6B61;
    border-color: #8B6B61;
}

.form-check-label {
    color: #616161;
}

/* Button Styles */
.btn-primary {
    background-color: #8B6B61;
    border-color: #8B6B61;
    height: 45px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #5D4037;
    border-color: #5D4037;
}

/* Social Login Styles */
.social-login {
    margin-top: 20px;
}

.social-login p {
    position: relative;
    text-align: center;
    color: #9e9e9e;
    margin-bottom: 20px;
}

.social-login p:before,
.social-login p:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #e0e0e0;
}

.social-login p:before {
    left: 0;
}

.social-login p:after {
    right: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s;
}

.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn.google {
    background-color: #dd4b39;
}

.social-btn.twitter {
    background-color: #1da1f2;
}

.social-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 575.98px) {
    .auth-card {
        padding: 20px;
    }
}