html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-size: cover;
    height: 100%;
    padding-bottom: 75px;
    position: relative;
}

body::after {
    content: "";
    background: url("../../Resources/img/bg/bglogin.jpeg") no-repeat center center fixed;
    background-size: cover;
    opacity: 0.6;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    width: 100vw;
    height: 100%;
    padding-bottom: 75px;
}

body::before{
    content: "";
    opacity: 0.5;
    z-index: -1;
}

.login_form {
    width: 30%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    background: white;
    box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.1);
    margin-top: 8%;
}

@media screen and (max-width: 480px) {
    .login_form {
        width: 80%;
    }
}

@media screen and (max-width: 480px) {
    #register_form {
        margin-top: 25px;
    }
  }

.entries {
    position: relative;
    margin-top: 5px;
}

label {
    position: absolute;
    width: 50%;
    text-align: left;
    top: 20px;
    left: 10px;
    background-color: white;
    padding: 0 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    color: #999;
}

input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 20px;
    box-sizing: border-box;
}

input:focus + label,
input:not(:placeholder-shown) + label {
    top: -10px;
    left: 5px;
    font-size: 14px;
    color: #1A414E;
    width: auto;
    background-color: rgba(255, 255, 255);
}

.loginbtn {
    margin-top: 20px;
    width: 100%;
    font-size: 18px;
}

#loginhr{
    margin-bottom: 30px;
}
#loginhr2{
    margin-top: 40px;
    margin-bottom: 30px;
}

#loginhigh {
    position: relative;
    display: inline-block;
    z-index: 1;
}

#loginhigh::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.5em;
    z-index: -1;
}

.space{
    margin: 20px;
}

input[type="number"] {
    -webkit-appearance: textfield;
       -moz-appearance: textfield;
            appearance: textfield;
  }
  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
  }

  
.error_text{
    background-color: rgb(178, 29, 29);
    color: white;
    padding: 15px;
    border-radius: 5px;
    width:fit-content;
    margin: 0 auto;
    text-align: center;
    margin-top: 25px;
}

.email-status {
    font-size: 12px;
    margin-top: 5px;
    padding: 2px 5px;
    border-radius: 3px;
    display: none;
}
.email-available {
    color: #28a745;
    background-color: #d4edda;
    display: block;
}
.email-taken {
    color: #dc3545;
    background-color: #f8d7da;
    display: block;
}
.email-checking {
    color: #6c757d;
    display: block;
}

.status-message {
    font-size: 12px;
    margin-top: 5px;
    padding: 2px 5px;
    border-radius: 3px;
    display: none;
}
.status-available {
    color: #28a745;
    background-color: #d4edda;
    display: block;
}
.status-taken {
    color: #dc3545;
    background-color: #f8d7da;
    display: block;
}
.status-checking {
    color: #6c757d;
    display: block;
}
