/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /* background: #ecf0f3; */
    background: #FFF;
}

.wrapper {
    max-width: 400px;
    min-height: 650px;
    margin: 110px auto;
    padding: 40px 30px 30px 30px;
    /* background-color: #ecf0f3; */
    background-color:  #FFF;;

    border-radius: 15px;
    box-shadow: 4px 4px 80px #e7e7e4, -4px -4px 80px #e7e7e4;
}

.logo {
    width: 80px;
    margin: auto;
}

.logo img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #5f5f5f,
        0px 0px 0px 5px #ecf0f3,
        8px 8px 15px #a7aaa7,
        -8px -8px 15px #fff;
}

.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    /* color: #555; */
    color: #ff8500;
}
/* 
.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1.2rem;
    color: #666;
    padding: 10px 15px 10px 10px;
    border: 1px solid red;
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
} */

.wrapper input{
    font-size: .9rem;
    color: #666;
    background-color: #f3f3f3;
}

 .fas,.fa,span {
    color: #ff8500;
    font-size: .9rem;
    background-color: #f3f3f3;
}

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #ff8500;
    color: #fff;
    border-radius: 15px;
    /* box-shadow: 3px 3px 3px #b1b1b1,
        -3px -3px 3px #fff; */
    letter-spacing: 1.3px;
}

.wrapper .btn:hover {
    background-color: #b85f00;
}

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #ff8500;
}

.wrapper a:hover {
    color: #b85f00;
}

.showpass{
    padding: 5px;
    font-size: 1.2rem;
}

/* login form css ends here except @media */

@media(max-width: 527px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}



.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}









