* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'font';
    src: url('font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fontbold';
    src: url('font-b.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body, input, .zaregaza {
    font-family: 'font', Arial, Helvetica, sans-serif;
}

h1, strong, b {
    font-family: 'fontbold', Arial, Helvetica, sans-serif;
}

body {
    background-color: #09090B;
    font-family: 'font', Arial, Helvetica, sans-serif;
    /* color: #7445a0; */
    color: white;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

h1 {
    line-height: 1.1;
    font-weight: 600;
}

input {
    text-align: center;
    height: 40px;
    width: 78%;
    margin-top: 15px;
    background-color: #18181B;
    border: 0;
    border-radius: 16px;
    outline: none;
    color: white;
    font-family: 'font', Arial, Helvetica, sans-serif;
    font-size: 17px;
}

img {
    max-width: 70px;
    width: 90%;
    margin-bottom: 15px;
}

.zaregaza {
    text-align: center;
    height: 40px;
    width: 78%;
    margin-top: 15px;
    background-color: #9019ff;
    border: 0;
    border-radius: 16px;
    outline: none;
    color: white;
    font-family: 'font', Arial, Helvetica, sans-serif;
    font-size: 20px;
    display: flex;
    text-align: end;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
}

.zaregaza:hover {
    background-color: #b15eff;
    box-shadow: 0 5px 12px #9019ff7f;
}