/* Main Styles */
:root {
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --bg-gradient: linear-gradient(to bottom right, #4F46E5, #081741);
    
    /* Override DaisyUI colors */
    --b2: #fdfeff; /* Custom base-200 color */
}

/* Night mode override */
html[data-theme="night"] {
    --b1: #39465b !important; /* Dark mode base-100 */
    --b2: #39465b; /* Dark mode base-200 */
}

body {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #EEF2FF, #E0E7FF);
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Sign In Section */
.sign-in-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.sign-in-content {
    width: 100%;
    max-width: 28rem;
    text-align: center;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    width: 11rem;
    height: 3rem;   
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    background: var(--bg-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='25' cy='25' r='1'/%3E%3Ccircle cx='75' cy='75' r='1'/%3E%3Ccircle cx='75' cy='25' r='1'/%3E%3Ccircle cx='25' cy='75' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 30px 30px;
    mix-blend-mode: overlay;
}

.features-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    max-width: 32rem;
    margin: 0 auto;
}

.features-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}


.alert {
    padding: 16px 20px;
    margin-bottom: 16px;
    border-radius: 12px;
    font-weight: 500;
    position: relative;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.1);
    border-left: 6px solid #c82333;
    background: linear-gradient(135deg, #fbe4e6, #f8d7da);
    color: #721c24;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-danger {
    background: linear-gradient(135deg, #fbe4e6, #f8d7da);
    color: #721c24;
    border-left-color: #c82333;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #721c24;
    transition: transform 0.2s ease;
}

.close-btn:hover {
    transform: scale(1.2);
    color: #a71d2a;
}



/* Media Queries */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .features-section {
        display: none;
    }    
}

