*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


.save{
    margin-top: 10px;
}

.customContainer{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;

}
.form{
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    position: absolute;
    max-width: 650px;
    width: 100%;
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

form{
    margin-top: 50px;
}
.form .field{
    position: relative;
    height: 40px;
    width: 100%;
    margin-top: 10px;
}
.field input,
.field button{
    height: 100%;
    width: 100%;
    border: none;

}
.field input{
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
    transition: border-color .3s;
}

.field input:focus{
    border-bottom-width: 1px;
    outline: none;
}
.eye-icon{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}
.field button{
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 15px;
}

.form-link{
    text-align: center;
    margin-top: 10px;
}

.titleText{
    color: white;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}
.form a{
    color: white;
    text-decoration: none;
}
.form-content a:hover{
    opacity: 0.8;
}

.media-options a{
    display: flex;
    align-items: center;
    justify-content: center;
}
