﻿
.login-page {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: darkgray;
}

.login-container {
    width: 26rem;
    border-radius: 0.3rem;
    background-color: #e2e2e2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    padding: 1rem;
    width: 20rem;
    padding-bottom: 2rem;
}

.login-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.login-label {
}

.login-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-submit-form-button {
    border-radius: 0.2rem;
    border: none;
    background-color: var(--color-primary);
    color: white;
    padding: 0.8rem 3rem 0.8rem 3rem;
}

.login-submit-form-button:hover {
    opacity: 0.7;
}

.login-header {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-error {
    display: flex;
    justify-content: center;
    margin-bottom: -1rem;
}
