@font-face {
    font-family: "Vibes";
    src: url("../font/neuropolitical.ttf");
}

*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
}

.maintenance {
    position: relative;
    height: 60%;
    width: max-content;
    font-family: Vibes;
    color: #ffffff;

    display: flex;
    place-items: center;
    justify-content: center;
}

.maintenance img {
    position: relative;
    width: 100%;
    top: -20px;
    min-width: 150px;
    max-width: 400px;
}

.maintenance span {
    position: absolute;
    height: 60px;
    font-size: 3em;
    text-shadow: -5px 5px 1px #1c819e;
    bottom: 40px;
}

.design-1 {
    background-color: #ffffff;
    height: 50px;
    width: 50px;
    position: absolute;
    border-radius: 30%;
    border: 2px solid #1c819e;
    box-shadow: -3px 3px 10px #1c819e;
}

.design-1 a {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: fit-content;
}

.top {
    top: 0;
}

.bottom {
    bottom: 0;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.maintenance label {
    position: absolute;
    bottom: 20px;
    height: 10px;
    font-size: 1em;
}

.container-main {
    height: max-content;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: row-reverse;
}

.container {
    height: 520px;
    background-color: rgba(255, 255, 255, 0.13);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: row-reverse;
}

.login,
.main {
    height: 520px;
    width: 400px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid #1c819e;
    box-shadow: 0 0 40px #1c819e;
    padding: 50px 35px;
}

.login *,
.main * {
    font-family: Vibes;
    color: #ffffff;
    letter-spacing: 0.025em;
    outline: none;
    border: none;
}

.center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-head {
    font-size: 2em;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
    width: 100%;
}

.input-box {
    position: relative;
    margin-top: 50px;
}

.input-box input,
.input-box select {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 5px;
    font-size: 1em;
    background-color: rgba(34, 34, 34, 1);
    outline: none;
    transition: 0.3s;
}

.input-box label {
    position: absolute;
    left: 0;
    top: 1px;
    padding: 10px;
    font-size: 1em;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.13);
    text-transform: uppercase;
    transition: 0.3s;
}

.input-box input:valid ~ label,
.input-box input:focus ~ label,
.input-box select:valid ~ label,
.input-box select:focus ~ label {
    color: #1c819e;
    padding: 0 5px 0 5px;
    transform: translate(10px, -7px);
    font-size: 0.7em;
    background-color: rgba(34, 34, 34, 1);
    letter-spacing: 0.2em;
    border: 1px solid;
    border-top: 0;
    border-radius: 5px;
}

.input-box input:valid,
.input-box input:focus,
.input-box select:valid,
.input-box select:focus {
    border: 1px solid #1c819e;
}

.button {
    margin-top: 50px;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.button-main {
    background-color: #ffffff;
    color: #080710;
}

.button-sub {
    background-color: #ffffff44;
    color: #b9b8bd;
}

input[type="date"]:required:invalid::-webkit-datetime-edit {
    color: transparent;
}
input[type="date"]:focus::-webkit-datetime-edit {
    color: #ffffff !important;
}