#teste-container {
    width: 100%;
    min-height: 500px;
    background-color: #efefef;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #dedede;
    position: relative;
}

#teste-container button {
    width: 240px;
    height: 60px;
    border-radius: 16px;
    border: none;
    transition: .5s;
    font-size: 16px;
    font-weight: bold;
}

#teste-container button:hover {
    cursor: pointer;
    color: #ffffff;
}

.info {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fafafa;
    padding: 8px;
    margin-bottom: 32px;
}

#teste-container h2 {
    margin-bottom: 16px;
}

#teste-container>form {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;

}

#teste-container>form button[type="submit"] {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background-color: #0cec0c;
}

#teste-container>form button[type="submit"]:hover {
    background-color: green;
}

#teste-container>form div {
    display: flex;
    gap: 8px;
    align-items: center;
}

#teste-container>form div input[type="radio"] {
    border: 1px solid red;
}

#teste-container .buttons {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#teste-container .buttons form button[type="submit"] {
    background-color: orange;

}

#teste-container .buttons form button[type="submit"]:hover {
    background-color: #ce8602;

}

#result-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#result-container h1 {
    text-align: center;
}

.message-container {
    width: 480px;
    height: 240px;
    background-color: lightgoldenrodyellow;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    box-shadow: 0px 0px 8px #24242480;

    h1,
    h2 {
        font-weight: bold;
    }




}

p.lead {
    font-size: 1.2rem;
    margin-bottom: 8px;
    margin-left: 16px;
}

.message-container .icon {
    position: relative;
    width: 60px;

    i:nth-child(1) {
        font-size: 48px;
        color: black;
        -webkit-text-stroke: 14px gold;
    }

    i:nth-child(2) {
        font-size: 48px;
        color: black;
        -webkit-text-fill-color: black;
        position: absolute;
        left: 6px;
    }
}

a {
    text-decoration: none;
    color: #014791;
    transition: .5s;
}

a:hover {
    text-decoration: underline;
    color: royalblue;
}

.home-container {
    width: 600px;
    margin: 0 auto;
}

.home-container>.grettings>form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-container>.grettings>form>div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.home-container>.grettings button[type="submit"] {
    width: 240px;
    height: 60px;
    border-radius: 16px;
    border: none;
    transition: .5s;
    font-size: 16px;
    font-weight: bold;
    background-color: #0cec0c;
}

.home-container>.grettings button[type="submit"]:hover {
    background-color: green;
    color: #fafafa;
    cursor: pointer;
}

.home-container>.grettings button[type="submit"]:disabled {
    background-color: #ececec;
    cursor: not-allowed;
}