/* css da página index.php */

html, body {
    font-family: Arial, sans-serif;
    background: rgb(208,241,241);
    background: linear-gradient(0deg, rgba(208,241,241,1) 0%, rgba(0,22,154,1) 100%);
    overflow: hidden;
}

img {
    width: 100px;
    padding-bottom: 10px;
}

#login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#login form {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

#login form input {
    margin-bottom: 10px;
}

#login form button {
    margin-top: 10px;
}

#login button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}





