body { background: #f8f9fa; }
.footer { background: #fff; border-top: 1px solid #e9ecef; }
.navbar-brand { font-weight: bold; }
.card { box-shadow: 0 2px 8px rgba(0,0,0,0.04); border-radius: 1rem; }
.form-floating > label { color: #6c757d; }
.table thead th { background: #f1f3f5; }
.btn { border-radius: 0.5rem; }
.alert { border-radius: 0.5rem; }

/* Custom styles for the new login/register page layout */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #e0e0e0; /* Light grey background for the whole page */
}

.auth-container {
    display: flex;
    width: 90%; /* Adjust as needed */
    max-width: 1200px; /* Max width for the container */
    height: 700px; /* Fixed height for the login/register card */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.auth-left-panel {
    flex: 1;
    background-color: #3f51b5; /* Blue background */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-left-panel h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-left-panel p {
    font-size: 1rem;
    text-align: center;
    max-width: 80%;
}

.auth-illustration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: auto;
    transform: translateX(20%) translateY(20%);
    opacity: 0.8;
}

.auth-left-panel-text {
    position: absolute;
    top: 50%;
    left: -100px; /* Adjust to move outside */
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: 0 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2); /* Faded effect */
    white-space: nowrap;
    text-transform: uppercase;
}

.auth-right-panel {
    flex: 1;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.auth-logo {
    text-align: left;
    margin-bottom: 30px;
}

.auth-logo img {
    max-height: 40px;
}

.auth-logo span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3f51b5;
    margin-left: 10px;
}

.auth-form-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.auth-form-subtitle {
    color: #777;
    margin-bottom: 30px;
}

.form-group.checkbox label {
    padding-left: 0;
}

.form-group.checkbox input[type="checkbox"] {
    margin-right: 5px;
}

.auth-partner-logo {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-partner-logo img {
    max-height: 30px;
}

.bg-password-image {
    background: url('/assets/img/undraw_forgot_password_re_c5pr.svg'); /* Placeholder image */
    background-position: center;
    background-size: cover;
}

@media (max-width: 992px) {
    .auth-left-panel {
        display: none;
    }
    .auth-right-panel {
        width: 100%;
    }
    .auth-container {
        height: auto;
    }
} 