/* ===================================================
   UltraKeys — Login Split Layout (Reference Match)
   =================================================== */

.auth-split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh; /* Fill remaining viewport minus header/footer largely */
    background: #0a0a14; /* Very dark blue/black background */
    margin: 0;
    padding: 0;
}

/* Left Image Column */
.auth-split-image {
    flex: 1 1 50%;
    position: relative;
    min-height: 400px;
}

.auth-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

/* Add a subtle dark gradient overlay to make it blend with the right side or just look cool */
.auth-split-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,20,0) 0%, rgba(10,10,20,0.8) 100%);
    pointer-events: none;
}

/* Right Content Column */
.auth-split-content {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #0c0c1e; /* Deep navy background matching reference */
}

.auth-split-content-inner {
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally like the reference */
    text-align: center;
}

.auth-split-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.auth-split-logo .logo-icon svg {
    width: 56px;
    height: 56px;
}

.auth-split-logo .logo-text {
    color: #14FF72;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 16px;
}

.auth-split-label {
    color: #ff4081; /* Pink accent */
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.auth-split-heading {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: inherit;
}

.auth-split-text {
    color: #888888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Form Styles */
.auth-split-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-split-form .form-group {
    margin-bottom: 0px;
}

.auth-split-input {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: #ffffff; /* White input background as requested */
    color: #000000;
    font-size: 14px;
    outline: none;
    border-radius: 0; /* Boxy inputs like Elementor default */
    font-family: inherit;
    transition: all 0.3s ease;
}

.auth-split-input::placeholder {
    color: #aaaaaa;
}

.auth-split-input:focus {
    box-shadow: 0 0 0 2px #f3b521; /* Yellow focus ring */
}

.auth-split-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbbbbb;
    font-size: 13px;
    margin: 4px 0 12px;
    align-self: flex-start; /* Align left */
}

.auth-split-remember input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: 0;
}

.auth-split-submit {
    width: 100%;
    padding: 18px 0;
    border: none;
    background: #f3b521; /* Bright yellow */
    color: #000000;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 0; /* Boxy buttons */
}

.auth-split-submit:hover {
    background: #dca018; /* Darker yellow hover */
    transform: translateY(-2px); /* Float effect */
}

.auth-split-link {
    display: block;
    color: #ff4081; /* Default to pink or could be a blueish link, let's use the pink/accent color of the text */
    font-size: 13px;
    text-decoration: none;
    margin-top: 20px;
    transition: color 0.3s;
    align-self: flex-start;
}

.auth-split-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .auth-split-section {
        flex-direction: column;
    }

    .auth-split-image {
        min-height: 250px;
        flex: 1 1 auto;
    }

    .auth-split-content {
        padding: 40px 20px;
    }
}
