* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;

    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: rgb(15, 15, 15);
    align-items: center;
    justify-content: center;
}

.article {
    width: 400px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;

    color: white;
    
    border-radius: 5px;
    background-color: #16181a;
    font-family: Arial, sans-serif;
}

.logo {
    width: 100%;
    height: 50px;
    padding: 50px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 250px;
    height: 75px;
}

form {
    width: 400px;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

label {
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 600;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

input:focus {
    outline: none; /* Remove o contorno padrão */
    border: 1px solid #00BFFF; /* Define a cor da borda como azul claro */
}

input[type="submit"] {
    background-color: #00add8;
    color: #202020;
    font-weight: bold;
    height: 50px;
    margin-top: 5px;
    cursor: pointer;
    width: 200px;
    border: 1px solid rgb(255, 255, 255);
}

input[type="submit"]:hover {
    background-color: #039ac0;
    color: #ffffff;
}

.backsite {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.backsite a:hover {
    color: red;
    cursor: pointer;
}

/*
    background: linear-gradient(to right, #FF007F, #00BFFF, #6A0D91, #FF4500);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    font-family: Arial, sans-serif;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

*/