﻿body {
    background-image: url("../../img/background.png");
    background-size: cover;
    background-position: center center;
    height: 100vh;
    overflow: hidden;
}

.title, .text, .input, .button {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title, .text, .button button {
    color: white;
}

.title {
    display: flex;
    align-items: center;
    top: 22%;
    font-size: 60px;
    white-space: nowrap;
}

.text {
    top: 51%;
    font-size: 38px;
}

.input {
    top: 64%;
}

.input input {
    width: 400px;
    height: 60px;
    font-size: 24px;
    border-radius: 10px;
}

.button {
    top: 78%;
}

.button button{
    background-color: #00a0e9;
    width: 220px;
    height: 50px;
    border: none;
    border-radius: 20px;
    font-size: 30px;
}

.logo {
    height: 1em;
    margin-right: 0.1em;
}