/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 18-feb-2021, 9.56.25
    Author     : lucaciaffoni
*/

* {
    font-family: "Arial";
}

h1, h2, h3 {
    text-align: center;
}

@media print {
  .visita {page-break-after: always;}
}

.visita {
    border: solid black 1px;
    height: 40em;
    margin-bottom: 2em;
    padding:.5em;
}

.grafico {
    width:33%;
    text-align: center;
    margin: auto;
    padding: auto;
    float: left;
}

.parametri {
    font-size: .8em;
    text-align: center;
}

.graph {
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e3f2fd, #90caf9);
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1.centrato {
    text-align: center;
    color: #0d47a1;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.login {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.login h2.centrato {
    margin: 0 0 20px;
    color: #0d47a1;
}

.login p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.login input[type="text"],
.login input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1em;
}

.submitButton {
    width: 100%;
    padding: 12px;
    background-color: #0d47a1;
    color: white;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.submitButton:hover {
    background-color: #1565c0;
}
