@import url("https://fonts.googleapis.com/css2?family=Lora&display=swap");
@import url(main.css);


.container-form-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    padding: 0 15px;
    margin-bottom: 100px;
}

.wrapper-form {
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px 40px 40px 40px;
    max-width: 460px;
    min-width: 305px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 15px;
}

.form-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    font-family: 'Lora', sans-serif;
    box-sizing: border-box;
    margin-bottom: 18px;
}

.form-item span {
    align-self: flex-start;
    opacity: 0.8;
    font-size: 16px;
    
}

.form-item input {
    width: 100%;
    height: 35px;
    box-sizing: border-box;
    padding: 0;
    padding-top: 6px;
    font-family: "Constantia W99 Italic";
    
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.315);
    background: none;
    font-size: 16.5px;
    outline: none;
    opacity: 0.7;
    font-weight: 400;
}

.submit-form-btn {
    border: none;
    padding: 0;
    background: none;
    text-transform: lowercase;
    font-family: "Constantia W99 Italic";
    color: #ffffff;
    border-radius: 22px;
    width: 230px;
    height: 40px;
    background: var(--btn-color);
    margin-top: 18px;
    font-size: 21.5px;
}

.form-item input:focus {
    border-bottom: 1px solid var(--btn-color);
}

.errorlist {
    align-self: flex-start;
    list-style-type: none;
    color: #eb3c3ce3;
    padding: 0;
    font-family: 'Lora', sans-serif;
    font-size: 13px;
}


.eye-btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    aspect-ratio: 1/1;
    bottom: 0;
    right: 0;
    cursor: pointer;
    z-index: 1000;
}

.eye-btn i {
    height: 20px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}