/* Auth Wrapper */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

@media (min-width: 992px) {
    .auth-wrapper {
        padding: 2rem 0;
    }
}

/* Auth Content */
.auth-content {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Auth Card */
.auth-card-wrapper {
    position: relative;
    z-index: 1;
}

.auth-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Auth Header */
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Auth Image Section */
.auth-image-section {
    position: relative;
    height: 200px;
    margin: -2rem -2rem 2rem -2rem;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
}

.auth-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.auth-image-overlay h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.auth-image-overlay p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

/* Auth Footer Links */
.auth-footer-links {
    margin-top: 2rem;
    text-align: center;
}

.auth-footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-footer-links a:hover {
    color: #0d6efd;
}

/* Auth Form */
.auth-form {
    margin-top: 2rem;
}

.auth-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 0;
}

.auth-form .form-label {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.auth-form .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.auth-form .form-control {
    border-left: none;
}

.auth-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.auth-form .input-group:focus-within .input-group-text,
.auth-form .input-group:focus-within .form-control {
    border-color: #0d6efd;
}

.auth-form .btn-primary {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
}

/* Auth Footer */
.auth-footer {
    margin-top: 2rem;
    text-align: center;
}

.auth-footer a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #0d6efd;
}

.auth-image {
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.login-page .auth-image {
  background-image: url('../images/unsplash/login-background.jpg');
}

.register-page .auth-image {
  background-image: url('../images/unsplash/register-background.jpg');
}

.forgot-password-page .auth-image {
  background-image: url('../images/unsplash/unsplash-1565402170291-8491f14678db.jpg');
} 