* {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

main {
    flex: 1;
}

.logo {
    text-decoration: none;
}

.navbar {
    background-color: #4aa0d9;
    padding: 10px 40px;
    position: relative;
    border-bottom: 2px solid black;
}

.nav-links {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    font-size: 10px;
    color: #e6e6e6;
}

.form-container {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #75b5e4;
    width: 80%;
    max-width: 700px;
    padding: 20px;
    border-radius: 5px;
    color: white;
    text-align: center;
    border: 2px solid black;
}

.form-container h2 {
    margin-bottom: 20px;
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.form-group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 550px;
}

.form-group label {
    flex: 1;
    text-align: right;
    margin-right: 10px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    flex: 2;
    padding: 8px;
    border: none;
    background-color: #0099ff;
    color: white;
    border-radius: 4px;
    outline: none;
    border: 2px solid black;
}

.form-group input::placeholder {
    color: #e0e0e0;
}

.radio-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.radio-group label {
    font-weight: bold;
}

.radio-group input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0099ff;
    cursor: pointer;
    border: 2px solid black;
}

.footer {
    border-top: 2px solid black;
    background-color: #4aa0d9;
    color: white;
    padding: 22px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}