* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    background:#dfdbdb;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: 'Times New Roman', Times, serif;
}

.app {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    color: #fff;
}

.container {
    padding: 30px;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 1px 10px 0 #555 ;
    gap: 10px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;

}

.logo img {
    width: 100%;
    height: auto;
}

.orientation {
    margin-top: 10px;
}
.orientation a {
    color: #00D9F3;
    text-decoration: none;
}

.form {
    width: 100%;
}

.div_password {
    margin-top: 15px;
}

label {
    display: block;
    margin: 5px 0;
}

input {
    border: 1px solid #dedede;
    border-radius: 5px;
    width: 100%;
    padding: 12px 10px;
    font-size: 18px;
    color: #222;
    font-family: 'Times New Roman', Times, serif;
}

input[type='password'] {
    letter-spacing: 1px;
}

.submit {
    margin-top: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

.submit a {
    color: #fff;
}

button {
    background-color: #00D9F3;
    color: #091726;
    padding: 5px 10px;
    border: 1px solid #06c8dd;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #fff;
    color: #222;
    border: 1px solid #ddd;
}