/* Giving some standard layout to the post */
body {
    margin: 0;
    padding: 0;
    background-color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* background-image: url("../images/1318499.jpeg"); */
    background-size: contain;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Styling the login box itself */
.loginBox {
    display: flex;
    position: relative;
    background-color: #272727;
    text-align: center;
    border-radius: 12px;
    box-shadow: 5px 8px 11px 5px rgba(0, 0, 0, 0.25);
}

/* Adjust the height of the container */
.loginInformation {
    height: auto;
    background-image: url('../images/layered-steps-haikei.png');
    background-position: center;
    background-size: cover;
    width: 780px;
}

/* Style the title in the image */
.loginInformation h1 {
    color: white;
    margin-top: 5%;
    font-size: 45px;
    position: relative;
    z-index: 999;
}

/* Create a padding only for the loginsystem */
.loginSystem {
    padding: 50px;
}

/* Styling the image in the header */
.headerImg i {
    font-size: 50px;
    color: #cf2e2e;
}

/* Styling the title in the header */
.headerTitle h1 {
    margin: 10px 0;
    color: #fff;
}

/* Put the form content in the middle of the box */
.form {
    margin-top: 10%;
    text-align: center;
}

/* Styling the layout of the label / input */
.inputField {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 10%;
}

/* Create a animation for the wrong input */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25%, 75% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
}

.fa-solid.nopassmatch, .fa-solid.userinuse, .fa-solid.emailinuse, .fa-solid.usernotfound, .fa-solid.pswnotfound, .fa-solid.emailinuse, .fa-solid.userinuse, .fa-solid.nopassmatch {
    color: rgb(200, 21, 21);
}

.fa-solid.usernotfound, .fa-solid.pswnotfound, .fa-solid.emailinuse, .fa-solid.userinuse, .fa-solid.nopassmatch {
    display: inline-block;
    animation: shake 0.5s ease-in-out;
}

/* Styling the label text */
.fa-solid {
    color: #fff;
    padding: 15px;
    text-align: right;
    margin-right: 2px;
}

/* Styling the input field */
.input {
    padding: 5px;
    font-size: 15px;
    background-color: transparent;
    border: 1px solid transparent;
    border-bottom: 2px solid #ffffff;
    width: 250px;
    outline: none;
    color: #fff;
}

.input.nopassmatch, .input.userinuse, .input.emailinuse, .input.usernotfound, .input.pswnotfound {
    border-bottom: 3px solid rgb(200, 21, 21);
    width: 250px;
    outline: none;
    color: #fff;
    padding: 5px;
    font-size: 15px;
    background-color: transparent;
}

/* Styling the login button */
button {
    border-radius: 5px;
    padding: 10px 30px;
    background-color: #cf2e2e;
    border: 1px solid #cf2e2e;
    cursor: pointer;
    color: #fff;
}

/* Create a column for the button and the text */
.formFooter {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
}

/* Create some spacing between the button and the text */
.formFooter i {
    color: #fff;
    margin-top: 15px;
}

/* Style the a text */
.formFooter a {
    color: #fff;
    text-decoration: none;
    text-align: center
}

/* Style the error message */
.error, .success, .nopassmatchmsg, .userinusemsg, .emailinusemsg {
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 20px;
}

/* Style the succes message */
.success {
    color: rgb(0, 213, 0);
}

/* Style the nopassmatch message */
.nopassmatchmsg, .userinusemsg, .emailinusemsg, .error {
    color: rgb(200, 21, 21);
}

/* Style the error messages on the login page */
.usernotfoundmsg, .pswnotfoundmsg {
    color: rgb(200, 21, 21);
    margin-bottom: 20px;
}

/* Hide the last 3 questions of the form */
.hidden {
    display: none;
    transition: 2s;
}

/* Style the 2 arrows for navigating */
.nextPage, .nextPage1 {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    color: inherit;
    position: absolute;
    right: 0;
    top: 50%;
}

.nextPage1 {
    right: 30%;
}

#pageIndicator {
    text-align: center;
    margin-top: 10px;
}

.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.indicator.active {
    background-color: #555;
}

a i .fa-solid:hover {
    margin-left: 10px;
}

form i {
    color: #fff;
}

i.underline {
    color: #fff;
    border-bottom: 1px solid #fff;
}

svg#visual {
    position: absolute;
    left: 460px;
}

svg#visual1 {
    position: absolute;
    left: 450px;
}

.formFooter a {
    transition: 0.3s;
}

.formFooter a:hover {
    transition: 0.3s;
    color: #cf2e2e;
}

