﻿/* Base Styles */
body {
    background-color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-x: hidden;
}

/* Main Wrapper - Split Layout */
.login-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Panel - Logo, Tagline, Description */
.login-left-panel {
    flex: 1;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.login-left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.branding-content {
    max-width: 35rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.brand-logo {
    width: auto;
    height: auto;
    max-width: 14rem;
    max-height: 8rem;
    margin: 0 auto 2.5rem;
    display: block;
    object-fit: contain;
}

.brand-tagline {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.02em;
    text-align: center;
}

.brand-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.brand-features {
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.125rem;
    color: #f79131;
    flex-shrink: 0;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Right Panel - Login Form */
.login-right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f5f5f5;
}

.login-container {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 26rem;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    letter-spacing: -0.01em;
}

.login-subtitle {
    font-size: 0.9375rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #7f8c8d;
    font-weight: 400;
}

h1 {
    text-align: center;
    margin-bottom: 1.25rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 0.875rem;
}

input[type="text"],
input[type="password"] {
    width: calc(100% - 1.625rem);
    padding: 0.625rem;
    border: 1px solid #ccc;
    border-radius: 0.3125rem;
    box-sizing: border-box;
    padding-left: 2.5rem;
    font-size: 1rem;
}

.input-icon {
    position: absolute;
    left: 0.625rem;
    top: 70%;
    transform: translateY(-50%);
    color: #777;
    font-size: 1.125rem;
}

.input-icon i {
    pointer-events: none;
}

.btn-primary {
    background-color: #f79131;
    color: #fff;
    border: none;
    border-radius: 0.3125rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-primary:focus {
    outline: none;
    box-shadow: none;
    background-color: #f79131;
    color: #fff;
}

.btn-primary:hover {
    background-color: #da6a00;
}

a {
    color: #f79131;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #da6a00;
    text-decoration: none;
    cursor: pointer;
}

.forgot-password {
    font-size: 0.875rem;
    color: #f79131;
    margin-top: 0.625rem;
    text-align: center;
    display: block;
}

/* Responsive Design */
@media (max-width: 48rem) {
    .login-wrapper {
        flex-direction: column;
    }

    .login-left-panel {
        padding: 2.5rem 1.5rem;
        min-height: auto;
    }

    .branding-content {
        text-align: center;
        max-width: 100%;
    }

    .brand-logo {
        max-width: 10rem;
        max-height: 5.5rem;
        margin: 0 auto 1.5rem;
    }

    .brand-tagline {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .brand-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .brand-features {
        margin-top: 1.5rem;
    }

    .feature-item {
        font-size: 0.9375rem;
        justify-content: center;
    }

    .login-right-panel {
        padding: 2rem 1.5rem;
    }

    .login-container {
        padding: 2rem 1.5rem;
    }

    .login-title {
        font-size: 1.5rem;
    }

    .login-subtitle {
        font-size: 0.875rem;
    }
}

@media (max-width: 30rem) {
    .login-left-panel {
        padding: 2rem 1rem;
    }

    .brand-logo {
        max-width: 8rem;
        max-height: 4.5rem;
        margin: 0 auto 1.25rem;
    }

    .brand-tagline {
        font-size: 1.5rem;
    }

    .brand-description {
        font-size: 0.875rem;
    }

    .feature-item {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .login-right-panel {
        padding: 1.5rem 1rem;
    }

    .login-container {
        padding: 1.75rem 1.25rem;
    }

    .login-title {
        font-size: 1.375rem;
    }

    .login-subtitle {
        font-size: 0.8125rem;
    }
}

/* Tablet View */
@media (min-width: 48.0625rem) and (max-width: 64rem) {
    .login-left-panel {
        padding: 2.5rem 2rem;
    }

    .brand-logo {
        max-width: 12rem;
        max-height: 6.5rem;
        margin: 0 auto 2.5rem;
    }

    .brand-tagline {
        font-size: 2rem;
    }

    .brand-description {
        font-size: 1rem;
    }
}

/* Large Desktop View */
@media (min-width: 90rem) {
    .branding-content {
        max-width: 40rem;
    }

    .brand-logo {
        max-width: 16rem;
        max-height: 9rem;
        margin: 0 auto 2.5rem;
    }

    .brand-tagline {
        font-size: 2.5rem;
    }

    .brand-description {
        font-size: 1.125rem;
    }
}









