* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

body.loading,
body.loading * {
    cursor: wait !important;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: max(18px, 2.5vw);
    height: 213px;
    background-image: url("./assets/worldmap.png");
}

header img {
    width: clamp(110px, 14%, 165px);
}

header h1,
header p {
    margin: 0;
}

header h1 {
    color: #32cd32;
    font-family: "Big Shoulders", sans-serif;
    font-size: clamp(2.7125rem, 5vw, 4rem);
    font-weight: 800;
}

header p {
    color: white;
    font-size: clamp(0.7625rem, 1.41vw, 1.125rem);
    font-weight: 500;
}

main {
    width: 92.8%;
    margin: 30px auto 0;
    border: solid #252f42 3px;
    border-radius: 15px;
    padding: 0 clamp(22px, 2vw, 30px);
}

.label {
    color: #035a9d;
    font-weight: bold;
    font-size: clamp(1.25rem, 1.875vw, 1.5rem);
    text-align: center;
}

.first-label {
    margin: 26px 0;
}

textarea {
    resize: vertical;
    background-color: #eff0f4;
    border: none;
    border-radius: 8px;
    height: clamp(118px, 10.5vw, 140px);
    padding: 0.55em;
    font-size: clamp(1.25rem, 1.875vw, 1.5rem);
    font-family: inherit;
    font-weight: 600;
    color: #333333;
}

.container {
    display: flex;
    flex-direction: column;
}

fieldset {
    margin: 30px 0 17px;
    border: none;
}

#radios-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 17px;
    padding-left: 20px;
}

.radio {
    font-weight: bold;
    font-size: clamp(1.25rem, 1.875vw, 1.5rem);
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio input {
    height: clamp(18px, 1.72vw, 22px);
    width: clamp(18px, 1.72vw, 22px);
    margin: auto 0;
}

.radio img {
    border: 1px solid #999999;
    width: 30px;
    height: 20px;
}

button {
    cursor: pointer;
    font-family: inherit;
    font-size: clamp(1.5rem, 2.25vw, 1.8rem);
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 6px;
    background-color: #035a9d;
    padding: clamp(12px, 1.2vw, 16px) 0;
    margin: 27px 0 46px;
}

button:disabled {
    opacity: 60%;
}

.hidden {
    display: none;
}
