* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: white;
    display: flex;
}

.container {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

.left-panel {
    width: 65%;
    /* background: linear-gradient(135deg, #000000 0%, #686565 50%, #000000 100%); */
    /* background: linear-gradient(135deg, #3F51B5 0%, #000000d9 50%, #2196F3 100%); */
    background: linear-gradient(135deg, #090b15 0%, #000000d9 50%, #2196F3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: none;
}

.left-panel::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.left-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 900px;
}

.logo-section {
    margin-bottom: 60px;
}

.logo-section h1 {
    font-size: 2.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}


.logo-icon i {
    color: #000;
}

.hero-text h2 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 2.2;
    opacity: 0.95;
    max-width: 670px;
}

.features {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: white;
    color: #6366f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.right-panel {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: white;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header img {
    width: 60px;
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-header p {
    font-weight: 500;
    color: #666;
    line-height: 1.8;
    font-size: 0.85rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-weight: 500;
}

.form-group input:focus {
    outline: none;
    border-color: #03a9f4de;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: #aaa;
}

.forgot-password {
    text-align: left;
    margin-bottom: 15px;
}

.submit-btn {
    width: 100%;
    padding: 13px;
    background: #000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.submit-btn:hover {
    background: #000000e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.red-button{
    background-color: #000 !important;
}

.red-button:hover{
    background-color: #000000db !important;
}

.divider {
    display: flex;
    align-items: center;
    margin: 10px 0 30px;
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    padding: 0 15px;
}

.mt-0{
    margin-top: 0 !important;
}

.mb-15{
    margin-bottom: 15px !important;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.social-btn {
    width: 100%;
    padding: 13px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    display: flex;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-size: 0.85rem;
}

.social-btn:hover {
    background: #fafafa;
    border-color: #ccc;
}

.social-btn i {
    font-size: .95rem;
}

.signup-link {
    text-align: center;
    color: #666;
    font-weight: 500;
    font-size: 0.85rem;
}

.signup-link a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.signup-link a:hover {
    color: #000000d1;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.75rem;
    color: #333;
    font-weight: 700;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #03a9f4de;
}

.remember-forgot a {
    color: #3f51b5;
    color: #000;
    text-decoration: none;
    font-size: 0.80rem;
    font-weight: 600;
    transition: color 0.3s;
}

.remember-forgot a:hover {
    color: #000000d1;
}

.form-collection{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-collection .form-group{
    flex-basis: 49%;
}

@media (max-width: 1024px) {
    .left-panel {
        width: 50%;
    }

    .right-panel {
        width: 50%;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        min-height: auto;
        padding: 40px 30px;
    }

    .right-panel {
        width: 100%;
        padding: 40px 30px;
    }

    .features {
        display: none;
    }

    .hero-text h2 {
        font-size: 2rem;
    }
}