*{
    padding: 0;
    margin: 0;
}

.h_registrasi{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #e0eafc 0%, #cadeff 50%, #a1affd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}
.h_registrasi a{
    /* display: flex; */
    /* width: 100%; */
    padding: 10px 25px;
    border-radius: 20px;
    background: linear-gradient(90deg, #0080ff 0%, #43c6ac 100%);
    text-decoration: none;
    color: black;
    transition: all 0.2s ease-in-out;
    margin-bottom: 20px;
}
.h_registrasi a:hover{
    background-color: rgb(255, 76, 76);
    color: aliceblue;

}

.h_registrasi .inputan_registrasi_akun{
    width: 50%;
    max-width: 500px;
    min-width: 280px;
    background-color: rgb(218, 243, 255);
    display: flex;
    border-radius: 20px;
    text-align: center;
    flex-direction: column;
    overflow: hidden;
    margin-top: 30px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .h_registrasi .inputan_registrasi_akun{
        width: 100%;
        max-width: 95vw;
        min-width: 200px;
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .h_registrasi .inputan_registrasi_akun{
        width: 95%;
        background-color: #ffffff72;
        max-width: 100vw;
        min-width: 100px;
        margin-top: 10px;
        border-radius: 10px;
    }
}
.h_registrasi .inputan_registrasi_akun button{
    bottom: 0px;
    border: none;
    padding: 10px;
    background: linear-gradient(90deg, #0080ff 0%, #cadeff 100%);
    box-shadow: 0 0 20px rgba(105, 105, 105, 0.342);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.h_registrasi .inputan_registrasi_akun button:hover{
    bottom: 0px;
    border: none;
    padding: 10px;
    background-color: rgb(0, 142, 231);
    box-shadow: 0 0 20px rgba(105, 105, 105, 0.342);
    color: aliceblue;
    transform: scale(1.5);
    margin-bottom: 9px;
}
.h_registrasi .inputan_registrasi_akun .box_input{
    display: flex;
    flex-direction: column  ;
    /* background-color: rgb(73, 73, 73); */
    margin-top: 20px;
    gap: 20px;
    padding: 20px;
}
.h_registrasi .inputan_registrasi_akun .box_input .box{
    /* background-color: antiquewhite; */
    /* padding: 20px; */
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
.h_registrasi .inputan_registrasi_akun .box_input .box input{
    border: none;
    background-color: aliceblue;
    box-shadow: 0 0 20px rgba(105, 105, 105, 0.342);
    padding: 10px;
    border-radius: 10px;
}

.h_registrasi .inputan_registrasi_akun .upload_img{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: antiquewhite; */
}
.h_registrasi .inputan_registrasi_akun .upload_img img{
    width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(105, 105, 105, 0.342);
    background-color: beige;
}
.h_registrasi .inputan_registrasi_akun .upload_img label{
    margin-bottom: 10px;
}
.h_registrasi .inputan_registrasi_akun .upload_img input{
    margin-bottom: 10px;
    background-color: aquamarine;
    padding: 10px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 20px rgba(105, 105, 105, 0.342);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.h_registrasi .inputan_registrasi_akun .upload_img input:hover{
    background-color: rgb(0, 142, 231);
    color: aliceblue;
}