* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}

body {
    background-color: #141414;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neon-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a0033 0%, #000 70%);
    z-index: -1;
}

.main-container {
    display: flex;
    gap: 50px;
}

img {
    width: 50px;
}

.container1 {
    background-color: #212121;
    padding: 60px;
    width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    gap: 35px;
}

.container2 {
    padding: 30px;
    width: 450px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    gap: 35px;
}



.container1, .container2 {
    background: rgba(33, 33, 33, 0.7); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(94, 41, 216, 0.3); 
    box-shadow: 0 4px 20px rgba(94, 41, 216, 0.1), 
                0 0 0 1px rgba(94, 41, 216, 0.1) inset; 
    transition: all 0.4s ease;
}

.container1:hover, .container2:hover {
    box-shadow: 0 4px 25px rgba(94, 41, 216, 0.2), 
                0 0 0 1px rgba(94, 41, 216, 0.2) inset;
    border-color: rgba(94, 41, 216, 0.5);
}

h1 {
    font-weight: 400;
    font-size: 2.4rem;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 310px;
    gap: 4px;
}

label {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

input {
    width: 100%;
    height: 45px;
    font-size: 1rem;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

button {
    padding: 10px;
    width: 310px;
    height: 60px;
    font-size: 1.6rem;
    cursor: pointer;
    background-color: #5E29D8;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    margin-top: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

button:hover {
    background-color: #7a4ef7;
    transform: scale(1.05);
}

img {
    width: 35px;
    height: auto;
}

h2 {
    font-weight: 400;
    font-size: 2.4rem;
    text-align: center;
}

strong {
    color: #5E29D8;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 90%;
}

li {
    list-style: none;
    font-size: 1.2rem;
}

ul li hr {
    height: 2px;
    border: none;
    background-color: #5E29D8;
    margin: 10px 0;
    box-shadow: 0 0 5px rgba(94, 41, 216, 0.7);
    opacity: 0.6;
}


/* parte js */

.msg-erro {
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 10px;
}

.msg-imc {
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 10px;
}


.info-icon {
    font-size: 1.8rem;
    color: #5E29D8;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}

.info-icon:hover {
    transform: scale(1.1);
    color: #7a4ef7;
}

.info-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #212121;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #5E29D8;
    box-shadow: 0 0 20px rgba(94, 41, 216, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.popup-content h3 {
    color: #5E29D8;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2.0rem;
}

.popup-content button {
    margin-top: 20px;
    width: 100%;
}


@media (max-width: 1135px) {
    .main-container {
        flex-direction: column;
        gap: 30px;
    }

    .container1, .container2 {
        width: 90%;
        max-width: 600px;
        padding: 30px;
    }

    button {
        width: 100%;
    }
}

@media (max-width: 1135px) {
    .main-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100%;
    }

    .container2 {
        display: none;
    }

    .container1 {
        width: 95%;
        max-width: 900px;
        padding: 50px 40px; 
        height: auto;
        gap: 30px;
    }

    h1 {
        font-size: 2.8rem; 
        text-align: center;
        margin-bottom: 25px;
    }

    label {
        font-size: 1.8rem; 
        display: block;
        margin-bottom: 12px;
    }

    input {
        font-size: 1.6rem; 
        height: 70px; 
        width: 100%;
        padding: 0 20px;
        margin-bottom: 20px;
        border-radius: 8px; 
    }

    button {
        font-size: 1.8rem; 
        height: 80px; 
        width: 100%;
        max-width: 350px; 
        margin: 30px auto 0; 
        display: block;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 10px; 
        font-weight: bold; 
        color: white;
        border: none;
    }
}

@media (max-width: 900px) {
    body {
        display: flex;
        min-height: 100vh;
        padding: 20px;
        align-items: center; 
        justify-content: center;
    }

    .main-container {
        width: 100%;
        max-width: 700px; 
        margin: auto; 
        gap: 25px;
        padding-bottom: 30px; 
    }

    .container1 {
        width: 100%;
        padding: 30px 20px;
        gap: 25px;
        margin-top: auto; 
        margin-bottom: auto; 
    }

    h1 {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }

    .form-group {
        gap: 8px;
    }

    input {
        height: 50px;
        font-size: 1.1rem;
    }

    button {
        height: 55px;
        font-size: 1.3rem;
        margin-top: 20px;
    }

    .resultado {
        margin-bottom: 15px;
    }
}

@media (max-width: 565px) {
    body {
        padding: 15px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-container {
        width: 100%;
        max-width: 100%; 
        margin: 0 auto;
        gap: 20px;
        padding: 0 15px 30px;
    }

    .container1 {
        width: 100%;
        padding: 25px 15px;
        gap: 20px;
        margin: 0; 
    }

    h1 {
        font-size: 1.8rem; 
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .form-group {
        gap: 6px;
    }

    label {
        font-size: 1.1rem;
    }

    input {
        height: 45px;
        font-size: 1rem;
        padding: 0 12px;
    }

    button {
        height: 50px;
        font-size: 1.2rem;
        margin-top: 15px;
    }
}