﻿body {
}
.login-wrapper {
    width: fit-content;
    margin: 40px auto;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

label {
    font-weight: bold;
    margin-bottom: 4px;
}

input {
    width: 250px;
    padding: 6px;
    font-size: 14px;
}

.login-hint {
    text-align: center;
    margin-top: 20px;
}

.login-error {
    text-align: center;
    margin-top: 20px;
    color: red;
}

.login-success {
    text-align: center;
    margin-top: 20px;
    color: green;
}