﻿.title-container {
    display: flex;
    justify-content: center;
}

.row {
    display: flex;
    justify-content: center;
}

.main-container {
    background-color: #1e1e1e;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 25rem;
}

.inputs-container {
    display: flex;
    flex-direction: column;
    row-gap: 0.6rem;
    width: 100%;
}

.submit-button-container {
    margin-top: 1.5rem;
}

.title {
    font-size: 1.1rem;
    color: white;
}

.submit-button {
    font-size: 0.75rem;
    height: 2.5rem;
    line-height: 1rem;
    font-weight: 500;
}

.text {
    font-size: 0.75rem;
}

.custom-label {
    font-size: 0.75rem;
    color: darkgray;
    margin-bottom: 0.2rem;
}

.link {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    color: white;
    font-size: 0.9rem;
}

.form-input {
    background-color: transparent;
    border-color: #6e6e6e;
    color: white;
    font-size: 0.75rem;
    height: 2.5rem;
}

.form-input:focus {
    background-color: transparent !important;
    border-color: #6e6e6e !important;
    color: white !important;
}

.spacer-line {
    width: 100%;
    height: 1px;
    background-color: #6e6e6e;
    margin: 1rem 0;
}

.microsoft-login-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.microsoft-button-styles {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #FFFFFF;
    background: #2F2F2F;
}

.microsoft-button-styles:hover {
    color: #FFFFFF;
    background-color: #404040;
    transition: background-color 200ms ease-in-out;
}

.microsoft-login-icon {
    margin-right: 12px;
}

input:-webkit-autofill,
input:-webkit-autofill::first-line,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: white;
    font-size: 0.75rem !important;
}

#validationSummary ul {
    list-style-type: none;
    text-align: center;
    margin: 0 !important;
    padding-inline: 0;
}