html, body {
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #001377;
    display: flex;
    justify-content: center; 
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px 0;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

.registro {
    text-align: center;
    justify-content: center;
    background: white;
    padding: 30px;
    width: 400px;
    border-radius: 15px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.3);
    
}

.form {
    text-align: center;
    justify-content: center;
    padding: 30px;
    width: 400px;
    
}

h1 {
    color: #001377;
    font-family: 'Times New Roman', Times, serif;
}

h2 {
    color: #001377;
    font-family: 'Times New Roman', Times, serif;
}

label {
    color: #001377;
    font-family: 'Times New Roman', Times, serif;
}

input[type="text"] {
    height:20px;
    font-size:15px;
    margin-bottom:10px;
    background-color: #001377;
    color: white;
    width: 80%;
    border: none;
                   }
                
input[type="email"] {
    height:20px;
    font-size:15px;
    margin-bottom:10px;
    background-color: #001377;
    color: white;
    width: 80%;
    border: none;
                   }

input[type="password"] {
    height:20px;
    font-size:15px;
    margin-bottom:10px;
    background-color: #001377;
    color: white;
    width: 80%;
    border: none;
                   }

button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #001377;
    color: #CFEFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
       }

button:hover {
    background-color: #CFEFFF;
    color: #001377;
            }
