*{
    padding: 0;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-style: normal;
}

section{
    display: flex;
    width: 100%;
    height: 100vh;
    /* overflow: hidden; */
}

section .h_login {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.331);
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    backdrop-filter: blur(25px);
}
section .h_login .h_login1 {
    flex-direction: column;
    width: 50%;
    height:80vh;
    background-color: rgba(195, 195, 195, 0.335);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 30px;
    color: aliceblue;
}
section .h_login .Log_in{
    display: flex;
    flex-direction: column;
    width: 25%;
    gap: 15px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: -15px 10px 20px 10px rgba(96, 96, 96, 0.317);
    background-color: rgba(255, 255, 255, 0.507);
}

section .h_login .Log_in span{
    /* background-color: rgb(34, 200, 255); */
    border-radius: 5px;
    color: rgb(80, 179, 255);
    /* width: 100px; */
    text-align: center;
    right: 0px;
    transform:translateY(-50%) translateX(-20%);
}

section .h_login .Log_in span i{
    /* background-color: aquamarine; */
    font-size: 25px;
}

section .blum1{
    position: absolute;
    transform: translate(100px, 50px);
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-color: blueviolet;
    animation: animasiblum1 2s 0.5s ease-in-out  infinite;
}
section .blum2{
    position: absolute;
    right: 0;
    transform: translate(-100px, 120px);
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background-color: rgb(43, 226, 159);
    animation: animasiblum2 2s 1.5s ease-in-out  infinite;
}
section .blum3{
    position: absolute;
    bottom: 0;
    transform: translate(100px, -100px);
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: rgb(226, 125, 43);
    animation: animasiblum3 2s 1s ease-in-out  infinite;
}
section .blum4{
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(-450px, -100px);
    width: 250px;
    height: 250px;
    border-radius: 100%;
    background-color: rgb(186, 43, 226);
    animation: animasiblum4 2s ease-in-out  infinite;
}
@keyframes animasiblum1 {
    /* 0%, 100%{
    } */
    50%{
        transform: translate(100px, 20px);
        background-color: rgb(255, 63, 73);
    }
}
@keyframes animasiblum2 {
    /* 0%, 100%{
    } */
    50%{
        transform: translate(-100px, 100px);
        background-color: blueviolet;
    }
}
@keyframes animasiblum3 {
    /* 0%, 100%{
    } */
    50%{
        transform: translate(100px, -80px);
        background-color: rgb(43, 226, 159);
    }
}
@keyframes animasiblum4 {
    /* 0%, 100%{
    } */
    50%{
        transform: translate(-450px,-80px);
        background-color: rgb(226, 125, 43);
    }
}
section .h_login .Log_in .check{
    width: 100%;
    position: relative;
    /* background-color: antiquewhite; */
}

section .h_login .Log_in input{
    width: 100%;
    padding: 10px;
    border: none;
    background-color: transparent;
    border-bottom: 5px solid;
    border-image-slice: 1;
    background-clip: padding-box;
    box-sizing: border-box;
    animation: animasiinput 1s ease alternate  infinite;
    
}

@keyframes animasiinput {
    0%,100%{
        border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
    }
    50%{
        border-image-source: linear-gradient(to left, #d53a9d, #743ad5);
    }
}

section .h_login .Log_in button{
    margin-top: 30px;
    padding: 10px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    background: linear-gradient(124deg, rgba(57,188,249,1) 0%, rgba(55,150,60,1) 79%);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

section .h_login .Log_in button:hover{
    background: linear-gradient(0deg, rgba(57,188,249,1)  0%,rgba(57,188,249,1) 79%);
    color: white;
}

section .h_login .Log_in img{
    width: 45%;
    margin-bottom: 5px;
}

section .h_login .Log_in h1{
    margin: 30px;
    font-weight: bold;
}

section .h_login .h_login1 h1{
    margin: 30px;
}
section .h_login .Log_in .icon{
    display: flex;
    flex-direction: column;
    /* background-color: #d53a9d; */
    align-items: center;
    gap: 10px;
    justify-content: center;
}

section .h_login .Log_in .icon #instagram{
    font-size: 50px;
    color:rgb(255, 111, 0);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
section .h_login .Log_in .icon #instagram:hover{
    font-size: 50px;
    color:rgb(255, 187, 0);
    text-shadow: 0 0 30px  rgb(112, 112, 112);
}
section .h_login .Log_in .icon #facebook{
    font-size: 50px;
    transition: all 0.3s ease-in-out;
    color:rgb(0, 136, 255);
    cursor: pointer;
}
section .h_login .Log_in .icon #facebook:hover{
    font-size: 50px;
    color:rgb(0, 204, 255);
    text-shadow: 0 0 30px rgb(112, 112, 112);
}

section .h_login .Log_in .icon #github{
    font-size: 50px;
    color:rgb(115, 0, 255);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

section .h_login .Log_in .icon #github:hover{
    font-size: 50px;
    color:rgb(187, 132, 255);
    text-shadow: 0 0 30px rgb(112, 112, 112);
    cursor: pointer;
}

.error{
    display:flex; 
    justify-content: center;
    align-items: center;
    position:fixed; 
    z-index:1;
    right:0;
    border-radius:5px;
    padding:10px;
    color:white;
    gap: 20px;
    /* border-left: 15px solid rgb(255, 231, 96);
    border-right: 15px solid rgb(255, 231, 96); */
    margin:10px;
    box-shadow: 0 0 20px rgb(80, 80, 80);
    animation: fade-in 0.5s ease forwards;
    background: linear-gradient(124deg, rgba(255,83,52,1) 45%, rgba(221,35,255,1) 76%);

}
.success{
    display:flex; 
    position:fixed;
    justify-content: center;
    align-items: center; 
    gap: 10px;
    z-index:1;
    right:0;
    border-radius:5px;
    padding:10px;
    color:rgb(255, 255, 255);
    /* font-weight: bold; */
    /* border-left: 15px solid rgb(255, 231, 96);
    border-right: 15px solid rgb(255, 231, 96); */
    margin:10px;
    animation: fade-in 0.5s ease forwards;
    background: linear-gradient(124deg, rgba(161,255,0,1) 0%, rgba(52,157,255,1) 45%);
    box-shadow: 0 0 20px rgb(80, 80, 80);

}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translate(200px);

    }
    to {
        opacity: 1;
        transform: translate(0);
    }
}

.fade-out {
    animation: fade-out 0.5s ease forwards;
}

@keyframes fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate(200px);

    }
}


.h_login .Log_in .icon img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    /* background-color: aquamarine; */
}

/* Cover_info */
.cover_info{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    max-height: 90vh;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 0px 20px rgba(68, 68, 68, 0.571);
    border-radius: 20px;
    overflow: hidden;
}

.cover_info img{
    width: 100%;
}
