/* Main Layout Styles */
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

/* Container Styles */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Auth Container Styles */
.auth-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: auto;
}

/* Auth Row Layout */
.auth-row {
    display: flex;
    min-height: 500px;
}

/* Welcome Section Styles */
.auth-image {
    background: linear-gradient(45deg, #007bff, #dcedff);
    /* background: linear-gradient(45deg, #2193b0, #6dd5ed); */
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Form Section Styles */
.auth-form {
    padding: 40px;
}

/* Form Control Styles */
.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(33, 147, 176, 0.25);
    border-color: #2193b0;
}

/* Button Styles */
.btn-primary {
    /* background: linear-gradient(45deg, #2193b0, #6dd5ed); */
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    border: none !important;
    box-shadow: 0 2px 4px rgba(0,123,255,0.2) !important;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 147, 176, 0.3);
}

/* Link Styles */
.auth-link {
    color: #2193b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: #6dd5ed;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .auth-image {
        display: none;
    }
    .auth-form {
        padding: 20px;
    }
}

/* Logo Styles */
.welcome-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 5px;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 1.5rem;
}

/* Input Group Styles */
.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-right: none;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Required Field Indicator */
.required-field {
    color: #dc3545;
    margin-left: 4px;
}

/* Form Label Styles */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Invalid Feedback Styles */
.invalid-feedback {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
} 