* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f9ff;
}

/* ===== PAGE ===== */
.enroll-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ===== CONTAINER ===== */
.enroll-container {
    background: #fff;
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

/* ===== IMAGE ===== */
.enroll-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FORM ===== */
.enroll-form {
    padding: 40px;
}

.enroll-form h1 {
    color: #0077ff;
    margin-bottom: 10px;
}

.enroll-form p {
    margin-bottom: 25px;
    color: #555;
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.enroll-form select {
    background: #fff;
}

.enroll-form button {
    width: 100%;
    padding: 14px;
    background: #0077ff;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.enroll-form button:hover {
    background: #005fd1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 850px) {
    .enroll-container {
        grid-template-columns: 1fr;
    }

    .enroll-image {
        display: none;
    }
}
