/*All Classes with the addition -paimon are made refering to the sign-up specific classes*/
.background {
    position: relative;
    height: 100vh;
}

.background::before {
    content: "";
    background-image: url(https://i.imgur.com/eH9ErgW.jpeg);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.75;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.form {
    background-color: #ffffff3c;
    margin-left: 5%;
    padding: 10px;
    margin: 10px;
    min-width: 50%;
    height: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
}

.title {
    font-weight: bold;
    color: #ffffff;
    margin-top: 0px;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
    font-size: xx-large;
    font-weight: bold;
    text-align: left;
    padding: 10px;
}

.label {
    font-weight: bold;
    color: #2e435d;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 5px;
    font-size: medium;
    text-align: left;
}

input[type="text"], input[type="password"], input[type="email"] {
    padding: 5px;
    box-sizing: border-box;
    background-color: #ffffffd3;
    border: none;
    color: #707070;
    height: auto;
    font-size: medium;
    border-radius: 15px;
    margin-bottom: 20px;
}

button {
    background-color: #2e435d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 20px;
    margin-top: 20px;
    width: 50%;
    font-size: medium;
    font-weight: bold;
    height: auto;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.image-container {
    float: right;
    contain: content;
    margin-left: 25%;
    margin-left: 25%;
}

.image {
    max-width: 90%;
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 100px;
}

.image-container-paimon {
    float: right;
    contain: content;
}

.image-paimon {
    max-width: 70%;
    float: right;
    margin-left: 50%;
    margin-bottom: 20px;
    margin-top: 100px;
}

button:hover {
    background-color: #f7ddb5;
}

a:hover {
    color: #f7ddb5;
}

.sign-switch {
    min-width: 50%;
    color: #2e435d;
    font-size: medium;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    margin-top: 30px;
    height: 20%;
}

.button-label {
    color: #2e435d;
    align-self: center;
}

.form-container {
    display: flex;
    align-content: space-evenly;
    flex-direction: column;
    width: 50%;
}

.form-container-paimon {
    display: flex;
    align-content: space-evenly;
    flex-direction: column;
    width: 62%;
}

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

.input-error {
    font-weight: lighter;
    font-size: smaller;
    color: rgb(172, 0, 0);
}

@media screen and (max-width: 425px) {
    .image-container {
        display: none;
    }

    .image-container-paimon {
        display: none
    }

    .form-container {
        width: 100%;
    }

    .form-container-paimon {
        width: 100%;
    }

    body {
        display: block;
    }
}
