@font-face {
    font-family: "Overpass";
    src: url("../assets/fonts/Overpass/Overpass-VariableFont_wght.ttf") format("truetype");
}
:root {
    --font-principal: "Overpass";

    --orange: hsl(25, 97%, 53%);

    --white: hsl(0, 0%, 100%);
    --light-grey: hsl(217, 12%, 63%);
    --dark-blue: hsl(213, 19%, 18%);
    --very-dark-blue: hsl(216, 12%, 8%);
}

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-principal);
    background-color: black;
    color: var(--white);
    font-weight: 100;
    line-height: 1.75rem;
}
img {
    max-width: 100%;
}
fieldset {
    border: none;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.card {
    width: 25rem;
    background: radial-gradient(circle at top, var(--dark-blue) 50%, hsl(212, 27%, 10%));
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.circle {
    background-color: hsla(217, 12%, 63%, 0.106);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}
.title {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
input[type="radio"] {
    display: none;
}
label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background-color: hsla(217, 12%, 63%, 0.106);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-weight: 400;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 3rem; /* Para la proxima vez, alinear con el line-height */
}
label:hover {
    background-color: orange;
    color: black;
}
input[type="radio"]:checked + label {
    background-color: var(--white);
    color: black;
}

.btn-submit {
    background-color: var(--orange);
    border: none;
    width: 100%;
    padding: 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}
.btn-submit:hover {
    background-color: var(--white);
    color: black;
}
.btn-submit:disabled {
    background-color: gray; /* Color cuando está deshabilitado */
    color: white;
    cursor: not-allowed; /* Cambia el cursor para indicar que está deshabilitado */
    opacity: 0.5; /* Reduce la opacidad para un efecto visual */
    pointer-events: none; /* Evita cualquier interacción, incluyendo hover */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mx-auto {
    margin: 0 auto;
}
.svg-thanks {
    margin-top: 2rem;
}
.result {
    width: max-content;
    margin: 0 auto;
    background-color:  hsla(217, 12%, 63%, 0.106);
    border-radius: 2rem;
    text-align: center;
    color: hsl(36, 97%, 53%);
    padding: 0.125rem 1.5rem;
    font-weight: 300;
}
.text-center {
    text-align: center;
}
.mb-1 {
    margin-bottom: 1rem;
}
.description {
    font-size: .97rem;
}