@import url('../forms.css');

body {
    display: flex;
    flex-direction: column;
    height: 100dvh;
}

.auth-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--scale-32);
    align-items: center;
    justify-content: center;
}

main {
    flex-direction: column;
    flex: 1;
    background: linear-gradient(135deg, var(--color-neutral-300) 0%, var(--color-neutral-500) 100%);
}

#form-button {
    min-width: 100%;
}

h2 {
    margin-bottom: 20px;
}

dlc-input[type="submit"] {
    max-width: none;
}

#forms-container {
    width: 100%;
    max-width: 360px;
    padding: 30px 20px;
    background: var(--color-neutral-100);
    border-radius: var(--scale-12);
    box-shadow: var(--dropshadow-m);
}

#message-container {
    display: none;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    animation-duration: var(--speed);
    animation-fill-mode: forwards;
}

.error {
    color: var(--color-error-500);
}