@font-face {
    font-family: Tinos;
    src: url('assets/fonts/Tinos-Regular.ttf');
}

body {
    height: 100vh;
    width: 100%;
    font-family: Tinos;
    display: flex;
    margin: 0;
}

.main {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    flex-grow: 1;
    justify-content: center;
}

.title {
    font-size: x-large;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.subtitle {
    font-size: medium;
    text-align: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

label {
    font-size: small;
}

.input-div {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

input {
    width: 250px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

button {
    border-width: 1px;
    border-style: solid;
    border-color: black;
    padding: 2px 25px 2px 25px;
    background-color: white;
    cursor: pointer;
}