@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Dejavu", sans-serif;
} 

.main {
    display: flex;
    height: 100vh;
    width: 100%;
    background-color: white;
}

.container-main {
    flex: 1;
    margin: 40px;
    background-color: #e2f8fe;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.container-question {
    flex: 1;
    background-color: white;
    padding: 20px;
}

.nav {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding: 30px;
    cursor: pointer;
    color: #2a8bad;
    font-weight: bold;
}

.titles {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 40%;
    left: 10%;
}

.step {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 50px;
    color: #90bfcd;
}

.goal {
    font-family: "Archivo Black", sans-serif;
    font-weight: 100;
    font-size: 55px;
    color: #0c88a9;
}

.select {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    color: #90bfcd;
}

.footer {
    font-family: "Roboto", sans-serif;
    color: #2a8bad;
    position: absolute;
    bottom: 7%;
    left: 5%;
    font-size: 40px;
}

.container-question svg {
    width: 300px;
    height: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(80%,-120%);
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40%;
    align-items: center;
}

.options input[type="radio"] {
    display: none;
}

.options {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #90bfcd;
    width: 500px;
    padding: 12px 16px;
    border-radius: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 550;
    font-size: 15px;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.3s ease;
}

.options:hover {
    background-color: #e6f7fb;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #90bfcd;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

input[type="radio"]:checked + .custom-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #0c88a9;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="radio"]:checked + .custom-radio + .label-text {
    font-weight: bold;
    color: #0c88a9;
}

.options:has(input[type="radio"]:checked) {
    background-color: #d6f0fa;
    border-color: #0c88a9;
}