/* fonte do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* estilo para o corpo da página */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a73e8;
}

/* estilo para a caixa flutuante */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.login-box {
    max-width: 500px;
    width: 100%;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
}

.login-box img {
    max-width: 200px;
    margin-bottom: 20px;
}

.login-box h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.5em;
    color: #333;
}

.login-box form {
    display: flex;
    flex-direction: column;
}

.login-box label {
    margin-bottom: 5px;
    font-size: 1.2em;
    color: #333;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    border: none;
    border-radius: 5px;
    background-color: #F9F9F9;
    padding: 10px 15px;
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #333;
    transition: all 0.3s ease;
}

.login-box input[type="text"]:focus,
.login-box input[type="password"]:focus {
    outline: none;
   background-color: #d5d5d5;
}

.login-box input[type="submit"] {
    border: none;
    border-radius: 5px;
    background-color: #1a73e8;
    padding: 10px 15px;
    font-size: 1.2em;
    color: #FFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-box input[type="submit"]:hover {
    background-color: #666;
}
