:root {
    --primary: #ffa501;
    --secondry: #dd920a;
}

body, a, p, h1, h2, h3, h4, h5, h6 {
    font-family: "Mukta", sans-serif;
}

a{
    transition: 0.3s;
}

main.login-main {
    min-height: 100vh;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    box-shadow: inset 0px 0px 0px 700px #0000009e;
    display: flex;
    align-items: center;
    padding:50px 0px;
}
.login-card .card-header {
    text-align: center;
    background: none;
    border: none;
}
.login-card .card-header img {
    width: 150px;
}
.card.login-card {
    padding: 20px;
}
.input {
    margin: 20px 0px;
}
.website-btn {
    background-color: var(--primary);
    color: #fff;
    border: none;
    outline: none;
    padding: 10px 30px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 20px -10px #000;
    transition: 0.3s;
    width: fit-content;
    text-decoration: none;
}
.input button.website-btn {
    width: 100%;
    height: 45px;
    padding: 0px !important;
    font-size: 18px;
}
.input input {
    margin-top: 4px;
    padding: 10px 10px;
    box-shadow: unset !important;
    outline: none !important;
    font-size: 13px;
}
.input.mb-0 a {
    color: #000;
    padding: 0px 6px 0px;
    margin-top: 18px;
    font-size: 13px;
}
.input.acc-type label span {
    background-color: #0000001c;
    display: inline-block;
    width: 142px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    padding: 10px 0px;
    transition: 0.5s;
    margin-right: 10px;
    line-height: 20px;
}
.input.acc-type input {
    position: absolute;
    opacity: 0;
}
.input.acc-type input:checked + span {
    background-color: var(--primary);
    color: #fff;
}
.input.acc-type h6 {
    margin-bottom: 13px;
}
.input label {
    font-size: 14px;
}
.input button.webiste-btn i {
    margin-left: 10px;
}
.input input:focus {
    border-color: var(--primary) !important;
}
.website-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 43px;
    height: 100%;
    background-color: var(--secondry);
    border-radius: 50px;
    z-index: -1;
    transition: 0.3s;
    opacity: 0.5;
}
.website-btn:hover:after {
    opacity: 1;
    width: 100%;
}
.website-btn:hover {
    box-shadow: unset;
}

::-webkit-scrollbar {
    width: 8px;
  }
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius:50px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .website-btn i {
    padding-left: 10px;
}
.card.thanku {
    text-align: center;
    padding: 40px 60px;
}
.card.thanku h1 {
    font-size: 50px;
    font-family: cursive;
    font-weight: 700;
    color: #000;
    margin-bottom: 27px;
    text-shadow: 0px 0px 5px var(--primary);
}
.card.thanku p {
    font-size: 18px;
    color: #000000d4;
    margin-bottom: 30px;
    line-height: 30px;
}
.card.thanku .website-btn {
    margin: auto;
}
.social-icons {
    padding-top: 40px;
}
.social-icons a {
    display: inline-block;
    font-size: 20px;
    color: #000;
    margin: 0px 8px;
}
.social-icons a:hover {
    color: var(--primary);
}
p.message {
    text-align: center;
    padding: 5px 0px;
}

@media (max-width:767px){
    .input.acc-type label span {
        font-size: 11px;
        max-width: 104px;
        height: 30px;
        padding-top: 7px;
    }
    .input {
        margin: 10px 0px;
    }
    .input label {
        font-size: 12px;
    }
    .input input {
        padding: 6px 8px;
        font-size: 12px;
    }
    .input button.webiste-btn {
        height: 34px;
        margin-top: 10px;
        font-size: 13px;
    }
    .input.mb-0 a {
        font-size: 10px;
    }
    .input.acc-type h6 {
        font-size: 12px;
    }
}