/* Reset básico e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #555;
    font-family: 'Roboto', sans-serif;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-moz-autofill,
input:-moz-autofill:hover,
input:-moz-autofill:focus {
    box-shadow: 0 0 0 1000px white inset;
    -webkit-text-fill-color: #000;
    -moz-text-fill-color: #000;
}

/* Estilo para links */
.link-style {
    text-decoration: none;
    font-size: 0.9rem;
}

/* Container principal da página de login */
.login-container {
    background-image: linear-gradient(white, #f3f2f2);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo para o card do formulário */
.card-container {
    padding: 10% 12%;
    box-shadow: 0px 10px 30px 5px rgba(0, 0, 255, 0.1);
    border-radius: 15px;
    min-width: 25rem;
    background-color: white;
}

/* Títulos */
.title, .subtitle {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
}

.title {
    font-size: 6rem;
}

.subtitle {
    font-size: 3rem;
}

/* Estilo para botões personalizados */
.custom-button {
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
}

/* Estilos responsivos */
@media screen and (max-width: 768px) {
    .desktop {
        display: none;
    }

    .card-container {
        box-shadow: none;
        padding: 5% 10%;
    }
}
