﻿main {
    background-image: url('/pics/web/signIn-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.form-warpper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 42%;
    height: 500px;
    min-height: fit-content;
    background-color: #000000ab;
    max-width: 600px;
    min-width: fit-content;
}

.form-floating {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 53%;
    height: fit-content;
}

#registerForm, #account {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-around;
    height: 78%;
}

.buttons-section {
    display: flex;
    justify-content: space-around;
    width: 51%;
}

.header-h2, .form-floating > label, #registerSubmit, #login-submit, .button-option {
    color: white;
    text-transform: uppercase;
}

.form-floating > label {
    width: fit-content;
    margin-bottom:10px;
}

.form-floating > span {
    margin-top: 12px;
    font-size: 12px;
    text-transform: math-auto;
    color: #dc2626;
}

.form-floating > input::placeholder {
    color: #c4c4c4;
}

.header-h2 {
    font-size: 24px;
    font-weight: bold;
}

div[class~="text-danger"] {
    margin: 12px 0px;
}

div[class~="text-danger"] > ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

div[class~="text-danger"] > ul > li {
    width: 55%;
    color: #dc2626;
}

.another-options {
    display: flex;
    justify-content: space-around;

}