form{
    margin-block-end: 0;
}
h1{
    font-size: large;
    text-align: center;
    color: #050505;
}
body{
    background-image: url('');
    background-repeat: no-repeat;
    background-size: cover;
}
.login_form{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #050505;
    border-radius: 15px;
    padding: 16px;
    width: 33%;
    backdrop-filter: blur(20px);
}

.login_form p{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.login_form label{
    color: #050505;

}
.input_wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.input_wrap input {
    width: 100%;
    padding-right: 35px; /* アイコン分の余白を確保 */
}

.input_wrap i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}
