html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
}

body {
    display: flex;
    flex-direction: column;
    background-image: url("/img/Login_BG.jpg");
    background-color: #e7e5e9;
    background-size: 100%;
}



header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

h1 {
    color: black;
    z-index: 1;
    position: relative;
    padding: 15px;
    text-align: center;
}

.logo {
    position: absolute;
    width: 180px;
    top: 10px;
    z-index: 2;
}

.logo:hover {
    cursor: pointer;
}

.background_top {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

form {
    display: flex;
    margin-top: 100px;
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}

.form_content {
    display: flex;
    flex-direction: column;
    background-image: url("/img/Paper_BG_Account.png");
    padding: 40px;
    color: black;
    gap: 20px;
    max-width: 600px;
}

label {
    font-weight: bold;
    font-size: 1.3em;
}

form p {
    color: rgb(0, 0, 0);
    font-size: 1.1em;
    text-align: center;
}

.Enter {
    display: flex;
    justify-content: center;
    align-items: center;
}



input {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-radius: 50px;
    height: 30px;
    width: 550px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1em;
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
    z-index: 1;
    cursor: pointer;
    position: relative;
}

button {
    background-color: rgb(117, 48, 163);
    color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 0, 0);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 8px 8px 0px rgb(0, 0, 0);
    font-size: 1.3em;
    height: 60px;
    width: 300px;
    text-align: center;
    text-decoration: none;
    z-index: 1;
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
    position: relative;
    transition: 0.4s;
}

button:hover {
    background-color: black;
    color: white;
    border: 2px solid white;
    box-shadow: 8px 8px 0px rgb(117, 48, 163);
    transform: scale(1.01);
    cursor: pointer;
}



a {
    color: rgb(48, 48, 48);
    transition: 0.4s;
}

a:hover {
    color: rgb(117, 48, 163);
}



span {
    color: rgb(160, 19, 19);
    display: none;
    margin-top: 10px;
    margin-left: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

.error {
    color: rgb(160, 19, 19);
    margin-top: 10px;
    margin-left: 5px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}


footer {
    width: 100%;
    color: white;
    position: relative;
    z-index: 0;
    background-image: url("/img/ORFooterV.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    min-height: 300px;
}

footer > p {
    text-align: center;
    top: 150px;
    z-index: 3;
    position: relative;
}

.footer-links {
    text-align: center;
    margin-top: 200px;
    z-index: 3;
}

.footer-links a {
    margin: 0 12px;
    color: white;
    display: inline-block;
    transition: 0.4s;
}

.footer-links a:hover {
    color: rgb(173, 173, 173);
}

