/* Registration Container */
.registration-container {
    display: flex;
    /* max-width: 1000px;
    width: 90%; */
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.form-container {
    background: #70a1e5;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(21, 21, 21, 0.1);
    text-align: center;
    width: 500px;
    height: 530px;
    margin-left:550px;

}

/* Form Section */
.registration-form {
    flex: 1;
    padding: 30px;
    background-color: #f8faff;
}

.registration-form h2 {
    margin-bottom: 20px;
    color: #3454a1;
    font-size: 24px;
}

.registration-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.registration-form input,
.registration-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.registration-form input:focus,
.registration-form textarea:focus {
    border-color: #3454a1;
    outline: none;
}

.registration-form button {
    width: 100%;
    padding: 12px;
    background-color: #3454a1;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.registration-form button:hover {
    background-color: #273a74;
}

/* Media Section */
.media-section {
    flex: 1;
    /* background-color: #eef2f7; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.media-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.media-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-container {
        flex-direction: column;
    }

    .media-section {
        padding: 20px;
    }
}




h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: #3454a1;
    margin-bottom: 20px;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

form input, form textarea , form select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fefefe;
    color: #3454a1;
    outline: none;
    box-sizing: border-box;
}

form label{
    width: 100%;
    padding: 10px;
    font-size: 14px;
    /* border: 1px solid #ddd; */
    /* border-radius: 8px; */
    /* background-color: #fefefe; */
    color: #3454a1;
    /* outline: none; */
    /* box-sizing: border-box; */
}

/* form textarea {
    grid-column: span 2;
    resize: none;
} */

form input::placeholder, form textarea::placeholder {
    color: #9c9c9c;
}

button {
    grid-column: span 2;
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    background-color: #3454a1;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background-color: #2c4580;
}


 /* body {
    font-family: 'Arial', sans-serif;
    background-color: #fdf4f2;
    display: flex; 
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(../img/botom-header.PNG) center center no-repeat; 
}  */
