* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
   
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
    /* background-color: rgba(245, 245, 245, 0.741); */
    /* overflow-x: hidden; */
    
}


/* navigation */
.navbar {
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    padding: 10px 20px;
    transition: all 0.3s;
    /* position: sticky;
    top: 0;
    z-index: 1000; */
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: #c79a63 !important;
}

.nav-link {
    color: #000 !important;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    transition: color 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #c79a63;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    visibility: visible;
    width: 100%;
}

.nav-link:hover {
    color: #c79a63 !important;
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.nav-icon-link {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    margin-left: 20px;
    transition: color 0.3s, transform 0.3s;
}

.nav-icon-link:hover {
    color: #c79a63;
}

.nav-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
}



















.wrapper {
    width: 1%;
    height: 80vh;
    background-image: url(ban1.webp);
    background-size: cover;
    display: table-cell;
    vertical-align: middle;
    font-family: 'Dosis', sans-serif;
    /* margin-top: 10%; */
}



.sign-panels {
    width: 650px;
    background: #fff;
    padding: 40px 80px;
    margin: 40px auto;
    border-radius: 20px;
    text-align: center;
}
.login,.signup {
    position: relative;
}


.title {
    color: #c79a63;
}

.title span {
    display: block;
    font-size: 46px;
    font-weight: bold;
}

.title p {
    font-size: 20px;
    font-weight: 500;
}

.btn-face,.btn-twitter {
    color: #fff;
    display: inline-block;
    width: 200px;
    font-size: 20px;
    height: 50px;
    border-radius: 50px;
    text-decoration: none;
    padding: 11px 0;
    font-weight: 500;
}

.btn-face .fa,.btn-twitter .fa {
    margin-right: 5px;
}

.btn-face {
    background: #5397d7;
    margin-right: 25px;
}

.btn-twitter {
    background: #40b9e0;
}

.or {
    margin: 35px 0;
    font-weight: 600;
    color: #9f9f9f;
}

.or:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #cecece;
    position: absolute;
    margin-top: -10px;
    z-index: 0;
}

.or span {
    display: block;
    background: #fff;
    width: 50px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.sign-panels input {
    width: 100%;
    display: block;
    margin-bottom: 15px;
    height: 50px;
    border-radius: 50px;
    border: none;
    background: #ededed;
    text-align: center;
    padding: 10px;
    font-size: 15px;
    color: #7c7c7c;
    font-weight: 500;
}

.sign-panels input:focus {
    outline:none;
}

.sign-panels input[type="checkbox"] {
    display: none;
}

.sign-panels input[type="checkbox"] + label {
    display: block;
    width: 50%;
    text-align: left;
    padding-left: 60px;
    cursor: pointer;
    color: #828282;
    font-weight: 500;
    margin-top: 10px;
    float: left;
    height: 50px;
    padding-top: 15px;
}

.sign-panels input[type="checkbox"] + label:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: #dbdbdb;
    position: absolute;
    left: 30px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 5px #ededed;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.sign-panels input[type="checkbox"]:checked + label:before {
    background: #FF5722;
    box-shadow: 0 0 0 5px #FF5722;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.btn-signin {
    display: inline-block;
    width: 50%;
    margin-top: 10px;
    height: 50px;
    background: #ec581e;
    border-radius: 50px;
    padding: 11px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.btn-reset,.btn-member,.btn-fade {
    font-size: 19px;
    font-weight: 500;
    color: #9f9f9f;
    display: block;
    /*width: 210px;*/
    margin: 30px auto 0;
    text-decoration: none;

}
.btn-member {
    margin-top: 15px;
}

.btn-reset .fa,.btn-member .fa {
    margin-left: 6px;
}

.notification p {
    font-size: 20px;
    font-weight: 600;
    color: #9f9f9f;
}

.notification span {
    color: #ec581e;
}

.error {
    display: block;
    color: #ec581e;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
}

@media screen and (max-width: 768px) {
    .sign-panels {
        width: 90%;
        padding: 40px;
    }
}

@media screen and (max-width: 570px) {
    .sign-panels {
        padding: 40px 20px;
    }

    .btn-face, .btn-twitter {
        width: 100%;
    }
    .btn-face {
        margin-right: 0;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 480px) {
    .sign-panels input[type="checkbox"] + label {
        width: 100%;
    }

    .btn-signin {
        width: 80%;
    }

    .title span {
        font-size: 36px;
    }

}






/* footer */
.footer {
    background-color: #f3f3f3;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .footer .column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
  }
  .footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .footer ul {
    list-style: none;
    padding: 0;
  }
  .footer ul li {
    margin-bottom: 10px;
  }
  .footer ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
  }
  .footer .social {
    display: flex;
    align-items: center;
  }
  .footer .social a {
    margin-right: 10px;
    font-size: 22px;
    color: #000;
  }
  .footer .contact-info {
    font-size: 12px;
  }
  .footer .contact-info a {
    text-decoration: none;
    color: #000;
  }
  .footer .contact-info .timing {
    margin-top: 10px;
  }
  .footer .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #999;
    width: 100%;
  }