/* Global Styles */
body {
    font-family: Arial, sans-serif;
}

.registration-section {
    display: flex;
    height: 100vh;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    position: relative;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.form-container {
    flex: 1;
    max-width: 45%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px;
    z-index: 2;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.privacy {
    text-align: left;
}

.privacy-text a {
    text-decoration: none;
    font-size: 14px;
}

.form-submit {
    text-align: center;
}

.form-submit a {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    border-radius: 50px;
    text-decoration: none;
}

.content-container {
    flex: 1;
    max-width: 45%;
    text-align: center;
    padding: 50px;
    color: white;
    z-index: 2;
}

.content-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.features-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    list-style-type: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 15px;
}

.features-list i {
    color: #fff;
    margin-right: 10px;
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .registration-section {
        flex-direction: column;
    }

    .form-container,
    .content-container {
        max-width: 100%;
    }

    .content-container {
        order: 2;
        margin-top: 20px;
    }
}
