body {
    font-family: 'Poppins', sans-serif;
}

/* HERO */
.register-hero {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('assets/img/reg-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.register-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.174);
}

.hero-content {
    position: relative;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 42px;
}

/* SECTION */
.register-section {
    padding: 80px 10%;
}

.register-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* FORM */
.register-form h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f57c00;
}

/* BUTTON */
.btn-submit {
    margin-top: 20px;
    padding: 14px;
    width: 100%;
    background: #f57c00;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: #ff9800;
}

/* INFO PANEL */
.register-info {
    background: linear-gradient(135deg, #111, #1a1a1a);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.register-info ul {
    list-style: none;
    padding: 0;
}

.register-info li {
    margin-bottom: 15px;
}

.register-info i {
    color: #f57c00;
    margin-right: 10px;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 999;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgb(35, 35, 35);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-content i {
    font-size: 50px;
    color: #f57c00;
    margin-bottom: 20px;
}

.modal-content button {
    margin-top: 20px;
    padding: 10px 25px;
    border: none;
    background: #f57c00;
    color: white;
    border-radius: 30px;
    cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .register-container {
        grid-template-columns: 1fr;
    }
     .top-bar{
        font-size: 12px;
    }
  .hero-content{
        margin-top: 101px;
    }

    .overlay
        {
            margin-top: 91px;
        }

        .btn-register {
            width: 100%;
        }
}

