/* ? Font Importing */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,500;1,600;1,700;1,800;1,900&display=swap');


/* ? CSS Reset */
* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 0;
}
body::-webkit-scrollbar{
    width: 0;
}


.container {
    width: 40%;
    min-width: 450px;
    position: relative;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 53%;
    padding: 50px 30px;
}

.container * {
    font-family: "Poppins", sans-serif;
    border: none;
    outline: none;
}

.inputs-wrapper {
    background-color: #f5f5f5;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #ccc;
    /* box-shadow: 0 15px 20px rgba(0,0,0,0.1); */
    margin-bottom: 50px;
}

body #heading {
    position: relative;
    text-align: center;
    top: 200px;
}

input,
button {
    height: 50px;
    background-color: #ffffff;

    color: #080808;
    font-weight: 500;
    border-radius: 5px;
}

input {
    width: 60%;
    padding: 0 20px;
    font-size: 14px;
    border: 1px solid #585858;
}

button {
    width: 30%;
    float: right;
    margin-left: 10px;
    background: #00aeb1;
    color:#fff;
    border: 1px solid #585858;
}

#date-input {
    border: 1px solid #ccc;
}

.inputs-wrapper button {
    border: 1px solid #ccc;
}

.outputs-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.outputs-wrapper div {
    height: 150px;
    width: 150px;
    background-color: #f5f5f5;
    border-radius: 5px;
    color: #181818;
    display: grid;
    place-items: center;
    padding: 20px 0;
    border: 1px solid #ccc;
    /* box-shadow: 0 15px 20px rgba(0,0,0,0.3); */
}

.container span {
    font-size: 30px;
    font-weight: 500;
}

p {
    font-size: 14px;
    color: #707070;
    font-weight: 400;
}

/** My Code */

#loader {
    background: #fff;
    height: 100vh;
    background-size: 20%;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10000000;
}

#loader h1 {
    font-weight: 500;
    position: relative;
    font-size: 30px;
    /* color: #191919; */
}

#loader h1 span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

/* ? Navbar */

#navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background: #f5f5f5;
    width: 100%;
    position: fixed;
    z-index: 1000000;
}

#navbar #logo a {
    text-decoration: none;
}

#navbar #logo a h1 {
    color: #181818;
    font-size: 20px;
    font-weight: 500;
}

#navbar #logo a h1 span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

/* ? Settings */

#navbar #settings {
    display: flex;
    align-items: center;
}

#navbar #settings .settingBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: #d4d4d4;
    margin-left: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
}

#navbar #settings .settingBtn i {
    font-size: 22px;
    color: var(--textColor);
}

/** SideBar */
#sideBar {
    position: fixed;
    right: 0;
    display: flex;
    justify-content: flex-start;

    align-items: flex-start;
    flex-direction: column;
    width: 280px;
    background: #f5f5f5;
    height: 100%;
    z-index: 1000000;
    padding: 20px;
    /* margin: 10px; */
    transition: 0.5s;
    transform: translateX(400px);
}

#sideBar #close {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 20px;
    color: #181818;
    border-radius: 3px;
    cursor: pointer;
    /* transition: 0.5s; */

}

#sideBar a {
    display: flex;
    position: relative;
    top: 50px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ccc;
    /* display: inline; */
    width: 85%;
    margin: 6px 0px;
    border-radius: 3px;
    text-decoration: none;
    color: #181818;
    text-underline-offset: 3px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.5s;
}

#sideBar #terms {
    position: absolute;
    bottom: 100px;
    width: 86%;

}

#sideBar a:hover {
    text-decoration: underline;
    color: #008386;
}

#sideBar #terms a {
    width: 86%;
    text-decoration: underline;
    color: #008386;
}

#heading {
    position: relative;
    top: 130px;
    text-align: center;
    font-weight: 500;
    font-size: 3rem;
}

#heading span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

@media (max-width:440px) and (min-width:370px) {
    .container {
        width: 40%;
        min-width: 400px;
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        padding: 50px 30px;
    }
}

@media (max-width:370px) and (min-width:350px) {
    #heading {
        display: flex;
        flex-direction: column;
    }

    .container {
        width: 40%;
        min-width: 380px;
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 60%;
        padding: 50px 30px;
    }
}

@media (max-width:350px) and (min-width:300px) {
    .container {
        width: 40%;
        min-width: 300px;
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 60%;
        padding: 0px 0px;
    }

    .inputs-wrapper {
        padding: 20px;
    }

    .outputs-wrapper div {
        padding: 5px;
        margin: 5px;
    }

}

/* Home */
#mainHome {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    /* left: 10%; */
    top: 130px;
    flex-direction: column;
}

#mainHome h1 {
    text-align: center;
    font-weight: 600;
    font-size: 2.5rem;
    width: 80%;
    margin: 20px 0px;
}

#mainHome h2 {
    font-size: 18px;
    width: 80%;
    font-weight: 400;
    text-align: center;
}

#passgen {
    position: relative;
    top: 200px;
}

.heading {
    position: relative;
    top: 200px;
}


#howtouse {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    top: 300px;
    /* padding: 20px; */

    margin-bottom: 50px;
    left: 16%;
    width: 100%;
}

#howtouse h1 {
    /* display: flex;
  align-items: flex-start; */
    position: relative;
    left: 1%;
    font-weight: 500;
    font-size: 1.5rem;
    /* flex-wrap: wrap; */
}

#howtouse div {
    padding: 10px;
    margin: 10px;
    /* background: #f5f5f5; */
    border: 1px solid #ccc;
    border-radius: 7px;
    width: 62%;
}

#howtouse div p {
    text-decoration: none;
    position: relative;
    left: 0;
    font-size: 18px;
    padding: 10px;
}

#howtouse h1 span {
    /* display: flex; */
    /* font-weight: 600; */
    /* flex-direction: column; */
    /* align-items: flex-start; */
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

#howtouse strong {
    font-weight: 600;
}

#mainHome h1 {
    font-weight: 600;
}
#heading{
    font-size: 2.5rem;
}
body #mid{
    position: relative;
    top: 280px;
}

@media (max-width:450px) and (min-width:220px) {
    body {
        /* background: #181818; */
    }
    .container {
        width: 40%;
        min-width: 300px;
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 60%;
        padding: 0px 0px;
    }
    
    .inputs-wrapper {
        padding: 20px;
    }

    .outputs-wrapper div {
        padding: 5px;
        margin: 5px;
    }
    #howtouse {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        top: 300px;
        /* padding: 20px; */
        left: 3%;
        width: 100%;
    }

    #howtouse h1 {
        display: flex;
        align-items: flex-start;
        position: relative;
        left: 2%;
        font-size: 1.5rem;
    }

    #howtouse div {
        padding: 10px;
        margin: 10px;
        /* background: #f5f5f5; */
        border: 1px solid #ccc;
        border-radius: 7px;
        width: 83%;

    }

    #howtouse div p {
        text-decoration: none;
        position: relative;
        left: 0;
        padding: 10px;
    }

    #howtouse #h1 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #howtouse h1 span {
        /* display: flex; */
        margin-left: 5px;
        /* flex-direction: column; */
        /* align-items: flex-start; */
    }

    #mainHome h1 {
        font-size: 2rem;
        font-weight: 600;
        width: 80%;
        left: 10%;
    }

    body #mid {
        position: relative;
        top: 300px;
    }

    #mainHome h1 {
        font-size: 2.3rem;
        font-weight: 600;
        width: 90%;
    }

    #mainHome h2 {
        width: 90%;
    }

    #mid #midText {
        width: 90%;
    }

    body #heading {
        top: 200px;
        width: 80%;
        position: relative;
        left: 10%;
        text-align: center;
    }

    body .container {
        position: relative;
        top: 400px;
    }

    #heading {
        width: 80%;

    }
}

@media (max-width:768px) and (min-width:600px) {
    body {
        /* background: #000; */
    }

    #howtouse {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        /* top: 100px; */
        /* padding: 20px; */
        /* left: 18%; */
        width: 100%;
    }

    #howtouse h1 {
        display: flex;
        align-items: flex-start;
        position: relative;
        left: 2%;
        font-size: 1.5rem;
    }

    #howtouse div {
        padding: 10px;
        margin: 10px;
        /* background: #f5f5f5; */
        border: 1px solid #ccc;
        border-radius: 7px;
        /* width: 63%; */
    }

    #howtouse div p {
        text-decoration: none;
        position: relative;
        left: 0;
        padding: 10px;
    }
}

@media (max-width:600px) and (min-width:520px) {
    body {
        /* background: #000; */
    }

    #howtouse {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        /* top: 50px; */
        /* padding: 20px; */
        left: 10%;
        width: 100%;
    }

    #howtouse h1 {
        display: flex;
        align-items: flex-start;
        position: relative;
        left: 2%;
        font-size: 1.5rem;
    }

    #howtouse div {
        padding: 10px;
        margin: 10px;
        /* background: #f5f5f5; */
        border: 1px solid #ccc;
        border-radius: 7px;
        width: 75%;
    }

    #howtouse div p {
        text-decoration: none;
        position: relative;
        left: 0;
        padding: 10px;
    }

    .lastdiv {
        padding-bottom: 0px;
    }

    footer .footer-section p {
        text-align: center;
        position: relative;
        left: 10%;
    }

    #mainHome h1 {
        font-size: 2.3rem;
        font-weight: 600;
    }
}
@media (max-width:1600px) and (min-width:900px) {
    #mainHome h1 {
        width: 50%;
    }

    #mainHome h2 {
        width: 45%;
    }
}
@media (max-width:1285px) and (min-width:500px) {
    .container .inputs-wrapper{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .container .outputs-wrapper div{
        width: 100px;
        height: 100px;
    }
}
@media (max-width:500px) and (min-width:300px) {
    .container .inputs-wrapper{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
#mid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    background: #015e60;
    height: 250px;
    margin-top: 70px;
    margin-bottom: 50px;
}

#midText {
    text-align: center;
    position: relative;
    /* top: 0px; */
    width: 50%;
    color: #fff;
    margin: 50px 30px;
    font-size: 18px;
}

#findPin {
    position: relative;
    margin: auto;
    text-align: center;
    height: 50px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #181818;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    top: -35px;
    box-shadow: 10px 10px 0px #181818;
    transition: 0.5s;
    color: #181818;
    /* margin-bottom: 40px; */
}

#findPin:hover {
    box-shadow: 0px 0px 0px #012c2d;
}

#howtouse a {
    color: #008386;
}


/** Footer - Code */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    top: 340px;
}

.footer-container {
    display: flex;
    width: 100%;
    background: #f5f5f5;
}

.footer-container #first {
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
}

.footer-container #first h1 {
    font-weight: 500;
    font-size: 1.5rem;
    padding-bottom: 10px;
}

.footer-container #second {
    width: 25%;
    padding: 30px;
}

.footer-container #second h3 {
    font-weight: 500;

}

.footer-container #second ul {
    padding-top: 10px;
}

.footer-container #second ul li {
    list-style: none;
    padding: 5px;
}

#second ul li a {
    text-decoration: none;
    color: #00867f;
}

.footer-container #third {
    width: 35%;
    padding: 30px;
}

.footer-container #third h3 {
    font-weight: 500;
}

.footer-container #third ul {
    padding-top: 10px;
}

.footer-container #third ul li {
    list-style: none;
    padding: 5px;
}

.footer-container #third ul li a {
    text-decoration: none;
    color: #00867f;
}

.footer-container #third #div {
    display: flex;
    position: relative;
    /* left: -40px; */
    /* justify-content:space-around; */
}

.footer-container #third #div ul:nth-child(2) {
    position: relative;
    left: 5%;
}

.copyright {
    padding: 20px;
}

.copyright p {
    font-weight: 500;
}

.copyright p span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer #first h1 span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width:800px) {
    .footer-container {
        display: flex;
        width: 100%;
        background: #f5f5f5;
        flex-direction: column;
    }

    .footer-container #first {
        align-items: flex-start;
        justify-content: flex-start;
        width: 90%;
    }

    .footer-container #first p {
        text-align: left;
    }

    .footer-container #second {
        width: 90%;
    }

    .footer-container #third {
        width: 90%;
    }
}

@media screen and (max-width:770px) {
    .footer-container #first p {
        text-align: left;
        position: relative;
        left: 0;
        margin: 0;
    }

    .copyright p {
        text-align: center;
    }
}

/** Explore Our Tools */
#howtouse #toolX{
    border:none ;
}
#howtouse #toolX .etool{
    width: 98%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 10px;
    position: relative;
    left: -2%;
    border: 1px solid #ccc;
    border-radius: 6px;
}
#howtouse #toolX .etool p{
    font-size: 17px;
    color:#005354;
    text-underline-offset: 4px;
    
}
#howtouse #toolX .etool i{
    height: 40px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    color: #00867f;
    border-radius: 3px;
    border: 1px solid #ccc;
}
@media (max-width:1000px) and (min-width:800px) {
    body{
        /* background: #000; */
    }
    #howtouse #toolX .etool{
        width: 98%;
        display:flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        margin: 10px;
        position: relative;
        left: -3%;
        border: 1px solid #ccc;
        border-radius: 6px;
    }
}
@media (max-width:800px) and (min-width:600px) {
    body{
        /* background: #000; */
    }
    #howtouse #toolX .etool{
        width: 98%;
        display:flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        margin: 10px;
        position: relative;
        left: -4%;
        border: 1px solid #ccc;
        border-radius: 6px;
    }
}
@media (max-width:425px) and (min-width:300px) {
    body{
        /* background: #000; */
    }
    #howtouse #toolX .etool{
        width: 98%;
        display:flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        margin: 10px;
        position: relative;
        left:-20px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }
}