﻿@font-face {
    font-family: 'SFPRODISPLAYREGULAR';
    src: url('../../fonts/SFPRODISPLAYMEDIUM.OTF');
}

@font-face {
    font-family: 'SFPRODISPLAYBOLD';
    src: url('../../fonts/SFPRODISPLAYBOLD.OTF');
}


body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "SFPRODISPLAYREGULAR", sans-serif;
    overflow: hidden;
    background-color: #f5f5f5;
}

.container {
    background-color: #007bff;
    width: 960px;
    height: 540px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 20px;
    background-image: url("../Images/background--log-in.png");
    background-repeat: no-repeat;
    background-position: center center;
    overflow: auto;
    flex-direction: row-reverse;
    overflow-y: hidden;
}

form {
    background-color: #fff;
    width: 27%;
    height: 100%;
    /* margin-left: 20px; */
    /* margin-top: 20px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border-radius: 20px; */
    margin: 0px;
    padding: 65px;
}

    form input[type="text"],
    form input[type="password"] {
        width: 80%;
        margin-bottom: 10px;
        padding: 10px;
        border: none;
        border-bottom: 2px solid #ddd;
        outline: none;
        font-size: 16px;
        font-family: "SFPRODISPLAYREGULAR", sans-serif;
    }


    form input[type="submit"] {
        width: 80%;
        margin-top: 20px;
        padding: 10px;
        background-color: #1c8eef;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: "SFPRODISPLAYREGULAR", sans-serif;
    }

    form a {
        text-align: center;
        margin-top: 10px;
        color: #1c8eef;
        text-decoration: none;
        font-family: "SFPRODISPLAYREGULAR", sans-serif;
    }
* {
    letter-spacing: 1px;
}
h1 {
    color: #fff;
    margin-left: 20px;
    font-family: "SFPRODISPLAYBOLD", sans-serif;
}

form h2 {
    font-size: 16px; /* Diminui o tamanho da fonte */
    color: #1c8eef; /* Define a cor azul para o texto */
}

.frase-container {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-family: "SFPRODISPLAYREGULAR", sans-serif;
    color: #fff;
}

.frase {
    font-size: 16px;
    text-align: left;
    margin-top: 80%;
    width: 50%;
    margin-left: 8%;
}

.titulo-simplifica {
    position: absolute;
    margin-top: -450px;
    font-size: 11px;
    font-family: 'SFPRODISPLAYBOLD', sans-serif;
    color: white;
    width: 100%
}
.alert-success-return {
    display: flex;
    align-items: center;
    position: fixed;
    top: 60px;
    background-color: #2aab81;
    padding: 10px;
    border-radius: 10px;
    color: white;
}
.alert-danger-return {
    display: flex;
    align-items: center;
    position: fixed;
    top: 80px;
    background-color: #ff3b52;
    padding: 10px;
    border-radius: 10px;
    color: white;
}

.alert-return-button {
    width: 18px;
    height: 18px;
    color: red;
    background-color: white;
    cursor: pointer;
    margin: 0px 5px 0px 5px;
    border: 1px solid white;
    border-radius: 50%;
    padding: 0;
}
