/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Almarai", sans-serif;
}

body {
    color:#5b3520;
    padding: 0;
    margin: 0;
    background: url(../img/bg.jpg) #c4bbb2;
    background-repeat: no-repeat;
    background-size:   cover;
    background-position: bottom center;
    min-height: 100% !important;
    object-fit: cover;
    height: 800px;
}
::placeholder {
    color: #ffffff; 
  }
.continer{ padding: 50px 0; }

.wrapper {
    max-width: 400px;
    min-height: 600px;
    margin: 0 auto;
    padding: 40px 40px;
    background-color: #b9917ba6;
    border-radius: 15px;
    background: rgb(255 255 255 / 20%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgb(155 155 155 / 18%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #df8b5c;
    /* box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff; */
}




.logo{width: 185px;height: 185px;background: #ffe8cb96;border-radius: 50%;margin: 0 auto;border: 7px solid #a78c6b7a;backdrop-filter: blur(5px);}
.logo img{width: 145px;height: 145px;max-height: 150px;margin-top: 24px;margin-right: 15px;}
.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0;
    /* padding-left: 10px; */
    color: #795548;
    background-image: url(https://media.giphy.com/media/26BROrSHlmyzzHf3i/giphy.gif);
    background-size: cover;
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    /* text-transform: uppercase; */
    font-size: 60px;
    margin: 10px 0;
    font-weight: 900;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    text-align: center;
    font-size: 1.2rem;
    color: #000000 !important;
    padding: 10px 15px 10px 10px;
    border-radius: 20px;
    background: #ffdfcd1f;
    border: 1px solid #fffbf81f;
}
.wrapper .form-field input:focus{
    color: #666 ; outline:#e52731;
}
.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
   
}

.wrapper .btn {
    box-shadow: none;
    width: 70%;
    margin:0 15%;
    height: 55px;
    background-color: #e52731;
    border-radius: 25px;
    font-size: 16pt;
    color: #fff;
}

.wrapper .btn:hover {
    background-color: #c2000a;
}

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #000000;
}

.wrapper a:hover {
    color: #c2000a;
}

@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}