@import url('https://fonts.googleapis.com/css2?family=Inter+Tight&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter Tight', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    color: #000000;
}

.auth-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper form  {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 350px;
    aspect-ratio: 1/1;
    width: 100%;
    padding: 1.5rem;
    background-color: #FFFFFF;
    box-shadow: #64646f33 0px 7px 29px 0px;
    border-radius: 2rem;
}

.auth-wrapper form>div {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

input,
button {
    width: 100%;
    border-radius: 0.5rem;
    border: none;
    padding: 0.5rem;
    background-color: #e4e4e4;
}

button {
    color: #FFFFFF;
    background: #0066ff;
    margin-top: 0.5rem;
}

.subtitle span {
    color: #0066ff;
    cursor: pointer;
}