/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

/* Header */
.header {
    background-color: #ffd700;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

.header a {
    color: #0044cc;
    text-decoration: underline;
}

/* Main container */
.container {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #002d72;
    color: white;
}

/* Info section */
.info-section {
    flex: 1;
    padding-right: 20px;
}

.info-section h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.info-section p {
    margin-bottom: 15px;
    font-size: 18px;
}

.info-section a {
    color: #ffd700;
    text-decoration: underline;
}

.info-image {
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* Form section */
.form-section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 350px;
    color: #002d72;
}

.form-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-section p {
    font-size: 14px;
    margin-bottom: 15px;
}

form {
    display: flex;
    flex-direction: column;
}

input, select {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #ffd700;
    color: #002d72;
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #e6c200;
}

/* For Screens Larger than 1024px (Desktops and Larger Tablets) */
@media (min-width: 1024px) {
    .enter-button {
        font-size: 20px;
        padding: 15px 30px;
    }
}

/* For Tablets (Between 768px and 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .enter-button {
        font-size: 18px;
        padding: 14px 28px;
    }
}

/* For Mobile Devices (Between 480px and 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .enter-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* For Small Mobile Devices (Below 480px) */
@media (max-width: 479px) {
    .enter-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}
