* {
    font-family: 'Roboto Mono';
}

.cont {
    height: 450px;
    width: 700px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 16px;
    background-color: transparent;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-radius: 19px;
    border: 0px solid #c9cace;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all ease 400ms;
}

.error {
    position: absolute;
    font-size: 11.5px;
    font-weight: 1000;
    bottom: 0;
    right: 0;
    padding: 0 20px 10px 0;
    display: flex;
    transition: all ease 400ms;
}

#error {
    opacity: 0;
    font-family: 'Megrim';
    align-self: center;
    color: black;
    transition: all ease 400ms;
}

.infoi {
    filter: grayscale(100%);
    box-sizing: border-box;
    display: inline;
    opacity: 0;
    position: relative;
    justify-self: center;
    margin-right: 3px;
    height: 16px;
    width: 16px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 14.667A6.667 6.667 0 1 0 8 1.333a6.667 6.667 0 0 0 0 13.334z' fill='%23D00E17' stroke='%23D00E17' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 4.583a.75.75 0 0 1 .75.75V8a.75.75 0 0 1-1.5 0V5.333a.75.75 0 0 1 .75-.75z' fill='%23fff'/%3E%3Cpath d='M8.667 10.667a.667.667 0 1 1-1.334 0 .667.667 0 0 1 1.334 0z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 16px;
    transition: all ease 400ms;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.form-box {
    position: relative;
    width: 400px;
    height: 450px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;

}

.inputbox {
    position: relative;
    margin: 10px 0;
    width: 310px;
    border: 1px solid #ffffff81;
    border-radius: 10px;
    box-sizing: border-box;
    padding-left: 5px;
    padding-right: 5px;
    backdrop-filter: blur(50px);
}

.inputbox label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1em;
    pointer-events: none;
    transition: .5s;
    font-family: 'Megrim';
}

input:focus~label,
input:valid~label {
    top: -12px;
    left: 10px;
}

.inv input:focus~label,
.inv input:valid~label {
    top: 52px;
    left: 10px;
}

.inputbox input {
    width: 99%;
    height: 40px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #fff;
}

.inputbox ion-icon {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2em;
    top: 20px;
}

button {
    width: 30%;
    height: 40px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.041);
    backdrop-filter: blur(100px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.082);
    border: none;
    outline: none;
    cursor: pointer;
    font-size: .8em;
    font-weight: 1000;
    left: 70%;
    position: relative;
    color: #fff;
    transition: all ease 400ms;
}

button:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.267);
}