@import "styles.css";

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

input {
    background: #ffffff;
}

label {
    font-size: 0.8rem;
}

button {
    padding: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
}

input[type=text], input[type=password] {
    font-weight: 600;
}

.signin-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.signin-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    width: 100%;
    min-width: 360px;
    max-width: 488px;
}

.title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.options {
    color: #8b8b8b;
    font-size: 0.8rem;
    margin-top: 1rem;
}

