@import url('https://fonts.cdnfonts.com/css/futura-std-4');

body {
    font-family: 'Futura Std', sans-serif;
    margin: 0;
    padding: 0;
    color-scheme: light;
    background: #fff;
    color: #000;
}

.associe-container {
    display: flex;
    width: 100%;
    min-height: 76dvh;
    height: fit-content;
}

.associe-background {
    display: none;
}

.associe-image {
    flex: 1;
    overflow: hidden;
}

.associe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-register {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.logo-register img {
    height: 150px;
}

.logo-register h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;

}

.register-container {
    background-color: #002060;
    align-content: center;
    padding-bottom: 40px;
    color: #fff;
    min-width: 40dvw;
}

.form-associe {
    margin-left: 100px;
    margin-right: 100px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
select {
    font-family: 'Futura Std', sans-serif;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    appearance: none;
}

.form-associe p {
    font-size: 14px;
    font-weight: normal;
    width: auto;
}

.button-enviar-aplicacao {
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    background-color: #ffcc00;
    font-family: 'Futura Std', sans-serif;
    font-size: 20px;
    color: #002060;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-position 1s ease, color 0.3s ease, box-shadow 0.3s ease;
    background-size: 300%;
    background-image: linear-gradient(to right, #006400 33.33%, #ff0000 33.33%, #ff0000 66.66%, #ffcc00 66.66%);
    background-position: right;
}

.button-enviar-aplicacao:hover {
    background-position: left;
    color: white;
}

.button-enviar-aplicacao:active {
    box-shadow: 0 0 20px 10px #0b43b3;
}

.form-reenviar-email {
    font-weight: bold;
    text-decoration: underline;
    margin-top: 10px;
    cursor: pointer;
}

.toast-error {
    width: 400px !important;
    height: auto !important;
    font-size: 18px !important;
    background-color: #f44336 !important;
    color: white !important;
    opacity: 0.9 !important;
}

.toast-success {
    width: 400px !important;
    height: auto !important;
    font-size: 18px !important;
    background-color: #15b307 !important;
    color: white !important;
    opacity: 0.9 !important;
}

.toast-error .toast-close-button, .toast-success .toast-close-button {
    color: white !important;
}

@media (max-width: 1500px) {
    .associe-container{
        display: flex;
        position: relative;
        justify-content: center;
        align-content: center;
        height: fit-content;
    }

    .associe-background {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../../images/fachada1.jpg');
        background-size: cover;
        background-position: center;
        filter: grayscale(100%);
        opacity: 0.3;
        z-index: -1;
    }

    .associe-image {
        display: none;
    }

    .register-container {
        margin: 30px 0;
        border-radius: 20px;
    }
}

@media (max-width: 800px) {
    .register-container {
        width: 90%;
    }

    .form-associe {
        margin: 0 25px;
    }

    .form-group{
        margin-right: 0;
    }
}

@media (max-width: 500px) {
    .toast-success {
        width: 250px !important;
        height: auto !important;
        font-size: 16px !important;
    }

    .toast-error {
        width: 250px !important;
        height: auto !important;
        font-size: 16px !important;
    }
}