body {
    background-color: #ebf1f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.login-container {
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
}

.login-left {
    padding: 40px;
}

.login-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1f36;
}

.login-left p {
    color: #6b7280;
    font-size: 15px;
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.input-group {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.input-group-text {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #6b7280;
}

.form-control {
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    font-size: 15px;
}

.form-control:focus {
    border-color: #4c6ef5;
    box-shadow: 0 0 0 4px rgba(76, 110, 245, 0.1);
}

.btn-primary {
    background-color: #4c6ef5;
    border-color: #4c6ef5;
    padding: 12px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #4263eb;
    border-color: #4263eb;
    transform: translateY(-1px);
}

.form-check-label {
    font-size: 14px;
    color: #6b7280;
}

.text-primary {
    color: #4c6ef5 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.text-primary:hover {
    color: #4263eb !important;
    text-decoration: underline;
}

.login-right {
    background: #4c6ef5;
    color: white;
    padding: 40px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    text-align: center;
}

.login-right img {
    max-width: 100%;
    margin-bottom: 20px;
}

.login-right h3 {
    font-size: 24px;
    font-weight: 700;
}

.login-right {
    background: url('../images/signin-bg.png');
}

.login-right h3 {
    font-size: 24px;
    font-weight: 600;
}

.login-right p {
    font-size: 15px;
    opacity: 0.9;
}

.login-right footer p {
    font-size: 13px;
    opacity: 0.8;
}

#login-form,
#signup-form {
    transition: all 0.3s ease;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}