/* font section start*/
            /* 'Open Sans' font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
            /* ImPerfect23 */
@font-face {
    font-family:'ImPerfect23';
    src: url('../../asset/font/Free ImPerfect23 Display Font/ImPerfect23.otf');
}
            /* Quantum */
@font-face {
    font-family:'Quantum';
    src: url('../../asset/font/Quantum.otf');
}
            /* Marcellus & Vollkorn & Kdam Thmor Pro font */
@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Marcellus&family=Vollkorn&display=swap');
/* font section end */
html{
    overflow:hidden;
}
/* loader start */
.loader {
    position : fixed;
    z-index: 9999;
    background : url('../asset/icone/PlayStation messages logo.gif') 50% 50% no-repeat;
    top : 0px;
    left : 0px;
    height : 100%;
    width : 100%;
    cursor : wait;
}
/* loader end */
body{
    display: flex;
    justify-content: center;
    background:url("../../asset/image/log.jpeg") no-repeat;
    background-size: cover;
    height: 100vh;
    align-items: center;
    background-attachment: fixed;
}
.log{
    background-size: cover;
    width: fit-content;
    height: fit-content;
    box-shadow:0px 0px 30px 1px black;
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

/* images */
.name img{
    width: 60px;
    height: 40px;
}
.pass img{
    width: 60px;
    height: 40px;
}
/* header & under-header*/
.header{
    display: flex;
    justify-content: center;
}
.header h1{
    box-shadow: 0px 0px 22px 1px white;
    color: snow;
    display: flex;
    background:url("../../asset/image/logoLog.jpg") no-repeat center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    font-family: "ImPerfect23";
    font-size: 20px;
    font-weight: lighter;
    outline: 1px solid #eeba30;
}
    
.under-header{
    display: flex;
    justify-content: center;
}
/* Username */
.name{
    display: flex;
    justify-content: center;
    padding: 25px;
    margin: 3px;

}
.name input{
    outline: none;
    border: none;
    background-color: inherit;
    box-shadow: 0px 0px 1px 1px #eeba30;
    border-radius: 30px;
    font-family: "Open Sans";
    color: snow;
    font-size: 20px;
    text-align: center;
    caret-color: #ae0001;
}
::placeholder{
    filter: brightness(200%);
    color: black;
    font-size: 23px;
    opacity: 1;
}
.userName{
    display: flex;
    justify-content: center;
    margin-top: 3px;
    height: 100%;
    align-items: center;
}
.userName .pic{
    width: 30px;
    z-index: 1;
}
            /* hover */
.name input:hover{
    outline: none;
    border: none;
    background-color: inherit;
    box-shadow: 0px 0px 1px 1px #ae0001;
    opacity: 1;
    border-radius: 30px;
    font-family: "Open Sans";
    color: snow;
    font-size: 20px;
    text-align: center;
    caret-color: #ae0001;
}
/* Password */

.pass{
    display: flex;
    justify-content: center;
    padding: 25px;
    margin: 3px;

}
.pass input{
    outline: none;
    border: none;
    background-color: inherit;
    box-shadow: 0px 0px 1px 1px #eeba30;
    border-radius: 30px;
    font-family: "Open Sans";
    color: snow;
    font-size: 20px;
    text-align: center;
    caret-color: #ae0001;
}
::placeholder{
    filter: brightness(200%);
    color: snow;
    font-size: 23px;
    opacity: 0.8;
}
.Password{
    display: flex;
    justify-content: center;
    margin-top: 3px;
    height: 100%;
    align-items: center;
}
.Password .pic{
    width: 30px;
    z-index: 1;
}
            /* hover */
.pass input:hover{
    outline: none;
    border: none;
    background-color: inherit;
    box-shadow: 0px 0px 1px 1px #ae0001;
    opacity: 1;
    border-radius: 30px;
    font-family: "Open Sans";
    color: snow;
    font-size: 20px;
    text-align: center;
    caret-color: #ae0001;
}
/* login button */
/* forgot password */
/* sign in */
.log-button{
    padding: 10px;
    display: flex;
    justify-content: center;
}
.log-button a{
    padding: 6px;
    margin: 3px;
    display: flex;
    justify-content: center;
    font-family: "Quantum";
    font-size: 30px;
    border-radius: 5px;
    background-color:#eeba30;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.SignIn{
    display: flex;
    justify-content: center;
}
.SignIn a{
    
    display: flex;
    justify-content: center;
    font-family: "Kdam Thmor";
    font-size: 20px;
    font-weight: 500;

}
.forget{
    display: flex;
    justify-content: center;
}
.forget a{
    display: flex;
    justify-content: center;
    font-family: "Kdam Thmor";
    font-size: 30px;
}
a{
    text-decoration: none;
    color: inherit;
}
.forget a,.SignIn a{
    color: aliceblue;
    opacity: 0.7;
}
        /* hover */
.forget a:hover,.SignIn a:hover{
    color: red;
    opacity: 1;
}
.log-button a:hover{
    border-radius: 6px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-image: linear-gradient(#ae0001,red,#ae0001 ,black);
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}