@font-face {
    font-family: "Inter";
    src: url('assets/fonts/Inter-VariableFont_slnt\,wght.ttf') format('truetype');
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #141414;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #1f1f1f;
    width: 300px;
    height: 525px;
    padding: 30px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    text-align: center;
}

img {
    height: 75px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

h1 {
    color: white;
    margin-bottom: 5px;
    font-size: 26px;
}

p {
    color: #c4f82a;
    margin-top: 0px;
}

q {
    color: #ccc;
    font-size: 14px;
}

.btn {
    display: grid;
    grid-gap: 15px;
    margin-top: 20px;
}

input {
    padding: 15px 0px;
    color: white;
    background-color: #333333;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: none;

}

input:hover {
    background-color: #c4f82a;
    color: black;
    cursor: pointer;
}