* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: #fff;
}

/* Left Panel */
.left-panel {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 10%;
    overflow-y: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #111827;
}

.logo svg {
    width: 28px;
    height: 28px;
}

.welcome-text {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.sub-heading {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    color: #111827;
}

.input-group input::placeholder {
    color: #9ca3af;
}

.input-group input:focus {
    border-color: #5b21b6;
    box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #5b21b6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 1.5rem;
}

.btn-submit:hover:not(:disabled) {
    background-color: #4c1d95;
}

.btn-submit:disabled {
    background-color: #8b5cf6;
    cursor: not-allowed;
    opacity: 0.8;
}

.signin-link {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.signin-link a {
    color: #5b21b6;
    text-decoration: none;
    font-weight: 600;
}

.terms {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
}

.terms a {
    color: #5b21b6;
    text-decoration: none;
    font-weight: 600;
}

/* Right Panel */
.right-panel {
    width: 50%;
    background-color: #0d0628;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.right-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.right-overlay-text {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    z-index: 10;
}

#message {
    text-align: right;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .left-panel {
        width: 100%;
        padding: 0 5%;
    }

    .right-panel {
        display: none;
    }
}

/* Slider */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.slide .right-overlay-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    z-index: 10;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    width: 80%;
}

.slider-dots {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}