﻿body {
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
    height: 100%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    width: 800px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

/* Left Side */
.left-panel {
    background: linear-gradient(135deg, #1e1e60, #3f3fff, #000a40);
    color: white;
    padding: 40px 30px;
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

    .left-panel .logo {
        font-size: 40px;
    }

    .left-panel h2 {
        margin-top: 10px;
        font-size: 24px;
    }

    .left-panel p {
        margin-top: 10px;
        font-size: 14px;
        opacity: 0.9;
    }

    .left-panel .get-started {
        margin-top: 20px;
        padding: 12px;
        border: none;
        border-radius: 25px;
        background-color: white;
        color: #1e1e60;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
    }

        .left-panel .get-started:hover {
            background: #e1e1e1;
        }

    .left-panel footer {
        font-size: 12px;
        opacity: 0.7;
    }

/* Right Side */
.right-panel {
    background: #f5f5f5;
    padding: 40px 30px;
    width: 55%;
    position: relative;
}

    .right-panel .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        border: none;
        background: none;
        font-size: 24px;
        cursor: pointer;
    }

    .right-panel h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .right-panel p {
        font-size: 14px;
        color: #555;
        margin-bottom: 25px;
    }

form input[type="email"],
form input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
}

    .options a {
        text-decoration: none;
        color: #0033cc;
    }

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(to right, #0033cc, #000a40);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

    .login-btn:hover {
        background: linear-gradient(to right, #0022aa, #000833);
    }

.register {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
}

    .register a {
        color: #0033cc;
        text-decoration: none;
        font-weight: bold;
    }
