﻿.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cadastro-container {
    width: 30%;
    min-height: 600px;
    max-height: 1000px;
    top: 724px;
    left: 420px;
    border-radius: 35px;
    border-width: 1px;
    border-color: #D9D9D9;
    display: block;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cadastro-container:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.login-container {
    width: 30%;
    min-height: 500px;
    max-height: 1000px;
    top: 724px;
    left: 420px;
    border-radius: 35px;
    border-width: 1px;
    border-color: #D9D9D9;
    display: block;
    align-content: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-container:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.login-logo {
    width: 253px;
    height: 40.84px;
}

.login-title {
    color: #0C0F1E;
    font-family: Arial;
    font-size: 19.08px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.login-input {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #003366;
    margin: 10px auto;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.login-input::placeholder {
    font-family: Arial;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    left: 30px;
    top: 15px;
}

.login-texto {
    font-size: 14px;
    color: #0c0f1e;
}

.login-texto-recuperar-acesso {
    font-size: 14px;
    color: #0ca4cf;
    margin-top: 20px;
    cursor: pointer;
}

/*Responsividade tela mobile*/

@media (max-width: 768px) {
    .login-container {
        width: 90%;
        padding: 15px;
        border-radius: 25px;
        margin: 30px;
    }

    .cadastro-container {
        width: 90%;
        padding: 15px;
        border-radius: 25px;
        margin:30px;
    }

    .login-logo {
        width: 180px;
        height: auto;
    }

    .login-title {
        font-size: 18px;
    }

    .login-input,
    .mud-input-slot {
        font-size: 16px !important;
    }

    .mud-button {
        width: 100% !important;
        height: 45px !important;
        font-size: 16px !important;
    }

    .login-texto,
    .login-texto-recuperar-acesso {
        font-size: 13px;
    }
}