
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    font-family: "Montserrat", sans-serif;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    height: 100%;
}

/* Estilo da seÃ§Ã£o de login */
.login-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000000;
    color: #ffffffde;
}

.login-box h2 {
    font-size: 22px;
    margin-bottom: 37px;
    font-weight: 300;
}

.login-box form {
    width: 100%;
    max-width: 400px;
}

.input-group {
    margin-bottom: 7px;
    border: 1px solid #ffffff1c;
    border-radius: 5px;
}

label {
    font-size: 14px;
    margin-bottom: 0px;
    display: block;
    color: #666;
    padding: 9px 0px 0px 10px;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="password"] {
    width: 100%;
    padding: 0px;
    border: 0px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f4f4f400;
    color: #ffffff;
    height: 40px;
    padding: 0px 0px 0px 11px;
}

button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #245cfb, #1c88fd);
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
    border-radius: 100px;
    margin-top: 14px;
    font-weight: 500;
}



button {
    width: 100%;
    padding: 15px;
    background-color: #0064e0;
    border: none;
    border-radius: 35px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
    margin-top: 26px;
}

button:hover {
    background-color: #0064e0;

}

.loading {
    pointer-events: none;
    background-color: #ff1e55;
}

.loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.forgot-password, .create-account {
    margin-top: 10px;
    text-align: center;
}

.forgot-password a, .create-account a {
    color: #7a7a7a;
    text-decoration: none;
    font-size: 14px;

}

.forgot-password a:hover, .create-account a:hover {
    text-decoration: underline;
}

/* Estilo da seÃ§Ã£o de imagem (propaganda) */
.image-box {
    flex: 1;
    background: url(/cadastro/bkd01.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}

/* SobreposiÃ§Ã£o de efeito escuro na imagem */
.image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.4); */
}

/* Modal para Esqueceu a Senha */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
}

.modal-content h3 {
    margin-bottom: 20px;
    color: #333;
}

.modal-content input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.modal-content button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #0056b3;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
input:focus {
    outline: none;
}
h1{
    font-size: 60px;
    text-align: center;
    background: linear-gradient(90deg, #245cfb, #1c88fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-box {
        display: none;
    }

    .login-box {
        padding: 40px;
    }

    .login-box h2 {
        font-size: 28px;
    }
}