* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #050505;
    /* Deep Black */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 159, 67, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
}

.login-card {
    background: rgba(255, 255, 255, 0.02);
    width: 900px;
    height: 600px;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Glass border */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: fadeIn 0.8s ease-out;
}

.left-pane {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: absolute;
    top: 40px;
    left: 60px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 800;
    font-size: 20px;
    margin-right: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.logo-text h3 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

.logo-text span {
    font-size: 13px;
    color: #888;
}

h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 40px;
    margin-top: 60px;
    font-weight: 700;
    letter-spacing: -1px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #aaa;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: all 0.3s;
}

.input-group input:focus {
    border-color: #ff9f43;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(255, 159, 67, 0.1);
}

.input-group input::placeholder {
    color: #555;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #ff9f43, #ff6b6b);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(255, 159, 67, 0.2);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 159, 67, 0.4);
}

/* --- LOGIN META (New) --- */
.login-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
    color: #888;
}

.forgot-link {
    color: #888;
    text-decoration: none;
    transition: 0.2s;
}

.forgot-link:hover {
    color: #fff;
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: 0.2s;
}

.checkbox-container input:checked~.checkmark {
    background: #ff9f43;
    border-color: #ff9f43;
}

.checkbox-container input:checked~.checkmark::after {
    content: '✓';
    position: absolute;
    color: black;
    font-size: 12px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.register-prompt {
    margin-top: 30px;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.register-prompt a {
    color: #ff9f43;
    text-decoration: none;
    font-weight: 600;
}

.register-prompt a:hover {
    text-decoration: underline;
}

.footer-text {
    margin-top: auto;
    font-size: 13px;
    color: #444;
    font-style: normal;
    text-align: center;
}

.right-pane {
    flex: 1.2;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.right-pane::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .login-card {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .right-pane {
        display: none;
    }

    .left-pane {
        padding: 40px 30px;
    }

    .logo-container {
        position: static;
        margin-bottom: 30px;
    }

    h1 {
        margin-top: 0;
        font-size: 32px;
    }
}

/* NOTIFICATION MODAL */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification-modal.active {
    opacity: 1;
}

.notification-content {
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(255, 159, 67, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification-modal.active .notification-content {
    transform: scale(1);
}

.notification-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.notification-content h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 0;
}

.notification-content p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.notification-content button {
    background: linear-gradient(45deg, #ff9f43, #ff6b6b);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    box-shadow: 0 5px 15px rgba(255, 159, 67, 0.2);
}

.notification-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 159, 67, 0.4);
}