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

body{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font);
    background: #dcdcdc;
}

.container{
    width: 400px;
    background: #eeebeb;
    color: #191919;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 20px 20px 50px #19191955;
}

.container h1{
    margin: 0;
    font-size: x-large;
    font-weight: 500;
    text-align: center;
}

.container .image img{
    width: 90%;
}

.container .image{
    background: #fff;
    margin: 20px 0;
    padding: 15%;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.form input{
    width: 100%;
    box-sizing: border-box;
    border: none;
    padding: 20px;
    background: #dcd9d9;
    border-radius: 5px;
    font-family: var(--font);
    outline: none;
}

.form button{
    background: dodgerblue;
    width: 100%;
    border: none;
    color: #fff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 5px;
    font-family: var(--font);
    font-weight: lighter;
    cursor: pointer;
}
