html, :root {
    height: 100%;
}

body {
    height: 100%;
    font-family: 'Figtree', sans-serif;
    background-color: #00bcd4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 48px;
    border: 1px solid;
    border-radius: 16px;
    background-color: white;
}

input {
    font-size: 16px;
    height: 40px;
    width: 50vh;
    outline: none;
    border: none;
    border-bottom: 1px solid;
    padding: 8px;
}

button {
    height: 48px;
    margin-top: 32px;
    border-radius: 8px;
    font-size: 20px;
    background-color: #00bcd4;
    color: white;
    font-weight: bold;
    letter-spacing: 1.6px;
    border: none;
    box-shadow: 2px 2px 1px 2px rgba(128, 128, 128, 0.6);
    cursor: pointer;
}

button:disabled {
    background-color: rgba(0, 188, 212, 0.7);
    box-shadow: none;
    border: none;
    cursor: not-allowed;
}

button:active {
    box-shadow: none;
    border: none;
}

form > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
