body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}

input,
#nationality {
    width: 100%; 
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box; 
}    

.gender {
    display: flex;
    align-items: center;
    gap: 20px; 
    margin-bottom: 15px;
}

.gender-title {
    font-weight: bold;
    color: #333;
}

.gender label {
    display: flex;
    align-items: center;
    font-weight: normal;
    gap: 5px; 
}

.gender input[type="radio"] {
    accent-color: #ff6f61; 
    cursor: pointer;
}

button {
    width: 100%;
    padding: 10px;
    background: #ff7e5f;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #eb5a3c;
}

a {
    color: #ff7e5f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
