@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    background: linear-gradient(135deg, #2f2f2f, #000);
}

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.formLogin {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 7px;
    padding: 40px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.4);
    gap: 5px;
}

.formLogin h1 {
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 2.3em;
    color: white;
}

.formLogin p {
    display: inline-block;
    font-size: 14px;
    color: white;
    margin-bottom: 25px;
}

.formLogin input {
    padding: 15px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    margin-top: 5px;
    border-radius: 0;
    background-color: transparent;
    color: white;
    transition: all linear 160ms;
    outline: none;
}

.formLogin input:focus {
    border-bottom: 1px solid rgb(255, 166, 0);
}

.formLogin label {
    font-size: 14px;
    font-weight: 600;
}

.links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 150px;
}

.links a {
    display: inline-block;
    font-size: 13px;
    color: white;
    transition: all linear 160ms;
    margin-right: 10px;
}

.links a:hover {
    color: rgb(255, 166, 0);
}

#btn {
    background-color: rgb(255, 166, 0);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border: none !important;
    transition: all linear 160ms;
    cursor: pointer;
    margin: 0 !important;
    margin-top: 20px;
}

/* Efeito de hover para o botão */
#btn:hover {
    background-color:  rgb(224, 147, 3);
}
