main {
    background: linear-gradient(#004d73, #0a4663, #057db6, #003047);
    min-height: 100vh;
}

.card {
    background-color: rgb(241, 241, 241);
    width: 600px;
    max-width: 800px;
    min-height: 200px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.progress {
    --bs-progress-height: 0.75rem !important;
}

.progress-bar {
    height: 10px;
    background: linear-gradient(#fca201, #ee9700, #da8a00, #ca8000);
}

.info-card img {
    width: 180px;
    border-radius: 10px;
}

.form-control {
    border-radius: 0px !important;
    border: 0px;
}

.form-control:active,
.form-control:focus,
.form-control {
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid;
    background-color: rgb(241, 241, 241);
}

.input-form {
    max-width: 300px;
    border-bottom: 1px solid;
}

.btn-primary {
    background-color: #003047 !important;
    border: none;
}

.btn-secondary {
    background-color: #d9d9d9;
    color: #003047;
    border: 1px solid #003047;
    font-weight: bold;
}

input:-webkit-autofill {
    background-color: #ffefd4 !important;
    box-shadow: 0 0 0 1000px #ffefd4 inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-check-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fca201;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    transition: all 0.3s ease;
}

.form-check-input:hover {
    box-shadow: 0 0 5px #fca201;
}

.form-check-input:checked {
    background-color: #003047;
    border: 5px solid #003047;
}

@media (max-width:768px) {
    .card {
        min-width: 100%;
        max-height: 100%;
    }

    .info-card {
        flex-direction: column-reverse !important;
        align-items: center !important;
    }
}

@media (max-width:500px) {
    .botoes {
        justify-content: center !important;
    }

}