* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    padding-top: 80px;
    background-color: #000;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.footer {
    text-align: center;
    padding: 30px;
    background-color: #0a0a0a;
    color: #666;
    width: 100%;
}


.split-container {
    display: flex;
    width: auto;
    max-width: 1200px;
    min-height: 600px;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.left-side {
    flex: 1;
    background: linear-gradient(135deg, #1DB954 0%, #17a447 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.left-side::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.left-side::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.left-content {
    position: relative;
    z-index: 1;
}

.left-content h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.left-content p {
    font-size: 18px;
    color: #111;
    line-height: 1.6;
}

.right-side {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.form-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #fff;
}

.form-container .subtitle {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 15px;
    background-color: #1a1a1a;
    color: #fff;
    transition: .2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1DB954;
    background-color: #222;
}

.form-group input::placeholder {
    color: #666;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
    font-size: 14px;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1DB954;
}

.forgot-password {
    color: #1DB954;
    text-decoration: none;
    font-size: 14px;
    transition: .2s ease;
}

.forgot-password:hover {
    color: #17a447;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #1DB954;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: .2s ease;
}

.submit-btn:hover {
    background-color: #17a447;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    color: #aaa;
    font-size: 14px;
}

.form-footer a {
    color: #1DB954;
    text-decoration: none;
    font-weight: bold;
    transition: .2s ease;
}

.form-footer a:hover {
    color: #17a447;
}

@media(max-width: 900px) {
    .split-container {
        flex-direction: column;
    }

    .left-side {
        padding: 40px;
        min-height: 200px;
    }

    .left-content h2 {
        font-size: 28px;
    }

    .left-content p {
        font-size: 16px;
    }

    .right-side {
        padding: 40px 20px;
    }
}
