
.tree {
    position: absolute;
    right: -0%;
    top: -10%;
    width: 150px;
}

/* error handling */
.error-wrong {
    color: red;
    margin: 0;
    padding: 0;
}

.error-empty {
    color: red;
    margin: 0;
    padding: 0;
}

/* donate */
.donate_modal{
    display: none;
}
/* header */
.header {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
}

.header img {
    width: 236px;
}

#active {
    color: #000;
    font-weight: 600;
}

.header ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    background-color: #FFFFFF;
    padding: 24px 32px 24px 32px;
    border-radius: 53px;
    border: 1px solid #F9F9F9;
    box-shadow: 0 0 10px #00000040;
}

.header ul li {
    list-style: none;
}

.header ul li a {
    position: relative;
    text-decoration: none;
    color: #6C6C6C;
    font-size: 16px;
    transition: 0.5s;
}


.header ul li a:hover {
    color: #000;
}


.header .donate {
    text-decoration: none;
    color: black;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 30px;
    background-color: #6C4C9E;
    transition: .5s;
    color: white;
    z-index: 1;
}


/* main */
main {
    max-width: 80%;
    margin: 0 auto;
}

#pcWelcome{
    display:block;
}
#mobileWelcome{
    display:none;
}
main h1 {
    color: #E27405;
    font-size: 48px;
    width: 600px;
}

main .container {
    display: flex;
    align-items: center;
    margin-top:50px;
}

main .container_left {
    flex: 0.5;
}

main .container_left form {
    width: 80%;
    border: 3px solid black;
    border-radius: 30px;
    background-color: #FFEEF0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 2rem;
}

main .container_left form h4 {
    font-size: 32px;
    font-weight: 500;
}

select {
    /* Reset */
    appearance: none;
    outline: none;

    /* Personalize */
    position: relative;
    padding:0 12px;
    width: 100%;
    height: 100%;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    outline: none;
    background-color: transparent;
    color: black;
    cursor: pointer;
    z-index:1;
    
}
.selectBox{
    position: relative;
    /* Personalize */
    height: 56px;
    border-radius: 12px;
    border: 2px solid #E0E0E0;
    width: 100%;
    font-size: 16px;
    outline: none;
    background-color: white;
    color: black;
    cursor: pointer;
     z-index:1;
}
.drpArrow{
    right: 5%;
    top: 35%;
    position: absolute;
    color: #6C6C6C;
    cursor: pointer;
    font-size: 1.2rem;
}
.remember_me{
    justify-content: end;
    width: 100%;
    display: flex;
    gap: 5px;
}
.remember_me input{
    cursor: pointer;
}
.remember_me h6{
    font-size: 0.875rem;
    color: #6C6C6C;
    font-weight: 500;
}

main form .inputField {
    position: relative;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

main form .inputField h6 {
    font-size: 16px;
    color: #2F2C2C;
    align-items: start;
    gap: 5px;
    display: flex;
}

main form .password_input {
    position: relative;
    width: 100%;
}
.flexInput{
    display: flex;
    gap: 10px;
    align-items: center;
}
#showPwd {
    display: none;
}

#hidePwd {
    display: block;
}

.eye {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    color: grey;
    font-size: 1.25rem;
    cursor: pointer;
    transition: 0.5s;
}

.eye:hover {
    color: black;
}

main form .forget {
    display: block;
    width: 100%;
}

main form .forget a {
    color: #6C4C9E;
    text-decoration: none;
    font-size: 14px;
    margin: 0;
}

main form .signup {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
}

main form .signup h5 {
    font-size: 14px;
    color: #6C6C6C;
    font-weight: 500;
}

main form .signup a {
    text-decoration: none;
    color: #6C4C9E;
    font-weight: 600;
    font-size: 14px;
}

main .container_right {
    flex: 0.5;
}

/* About Poofo */

section {
    margin-bottom: 50px;
}

section h2 {
    text-align: center;
    width: 100%;
    color: #4D54FB;
    font-size: 48px;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
}



.card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #F7F8F9;
    border-radius: 16px;
    box-shadow: 0 0 10px grey;
    padding: 16px 24px;
    height: 100%;
}

.card svg {
    flex: 0.1;
    transform: translateY(-20px);
    width: 60px;
    height: 60px;
}

.card p {
    flex: 0.9;
    font-size: 20px;
}

/* footer */

footer {
    background-color: #FFEEF0;
    width: 100%;
}

footer p {
    text-align: center;
    color: #858282;
    font-size: 16px;
    padding-bottom: 16px;
}

.footer_flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    padding: 18px 0rem;
}

.footer_flex .ul1 {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 2rem 0;
}

.footer_flex .ul1 li {
    list-style: none;
    transition: 0.5s;
}

.footer_flex .ul1 li:hover {
    transform: translateY(-5px);
}

.footer_flex .ul1 li a {
    color: #6C6C6C;
    text-decoration: none;
    font-size: 1.25rem;
}


.footer_flex .ul2 {
    padding: 2rem 0;
    display: flex;
    gap: 48px;
    justify-content: center;
}

.footer_flex .ul2 li {
    list-style: none;
}

.footer_flex .ul2 li a {
    color: #6C6C6C;
    text-decoration: none;
    transition: 0.5s;
}

.footer_flex .ul2 li a:hover {
    color: #000;
}

.footer_flex img {
    width: 222px;
    height: 64px
}
/* terms */
.terms h1{
    margin-bottom: 20px;
}
.terms h2{
    margin:15px 0 10px 0;
}
.terms p{
    margin-bottom:10px;
}
@media only screen and (max-width: 1400px) {

    /* main */
    main .container_right img {
        width: 500px;
    }

    main form .signup h5 {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1220px) {
    
    #pcWelcome{
        display:none;
    }
    #mobileWelcome{
        display:block;
        margin-top: 5rem;
    }
    /* header */
    .header ul {
        width: 100%;
        position: absolute;
        display: flex;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        justify-content: center;
        height: 61px;
        gap: 0;
        background-color: #FFFFFF;
        padding: 20px;
        border-radius: 53px;
        border: 1px solid #F9F9F9;
        box-shadow: 0 0 10px #00000040;
    }

    .header ul li {
        display:flex;
        justify-content: center;
        flex:1;
        position: relative;
        align-items: center;
        z-index: 1;
    }

    .header ul .mobile_tree{
        display: block;
    }
    .header ul .connection_tree{
        display: block;
    }
    .header ul.show {
        transform: translateY(0%);
        top: 0;
    }
    #opacity_modal.show{
        display: flex;
    }

    /* main */
    main h1 {
        
        width: 100%;
        text-align: center;
    }

    main .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .container_left {
        width: 50%;
    }

    main .container_left form {
        width: 100%;
        margin: 0;
    }

    /* About Poofo */
    .cards {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .card svg {
        transform: translateY(-10px);
        width: 50px;
        height: 50px;
    }

    /* footer */
    .footer_flex .ul2 {
        padding: 1rem 0;
        gap: 20px;
    }

}

@media only screen and (max-width: 740px) {
    /* main */
    main h1 {
        width: 100%;
        font-size: 2.5rem;
    }

    .container_left {
        width: 100%;
    }

    /* About Poofo */
    .card {
        gap: 0;
        padding: 16px;
    }

    .card p {
        padding: 10px 5px;
    }

    .card svg {
        transform: translateY(-30px);
        width: 40px;
        height: 40px;
    }

    /* footer */
    .footer_flex {
        display: block;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer_flex .ul2 {
        gap: 10px;
        padding: 0;
        margin: 0;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .header {
        max-width: 90%;
        
    }
    main {
        max-width: 90%;
    }
    .header img {
        width: 136px;
    }
    .header ul{
        gap: 0;
    }
	
    .header ul li a{
        font-size: 14px;
    }
    /* main */
    main h1 {
        width: 100%;
        font-size: 2rem;
        text-align: left;
    }

    main .container_left form h4 {
        font-size: 32px;
        font-weight: 500;
    }
    main .container_right img {
        width: 100%;
    }

    /* About Poofo */
    .card {
        gap: 5px;
        align-items: start;
    }

    .card svg {
        transform: translateY(0px);

    }
    .card p {
        font-size: 16px;
    }
    section h2 {
        font-size: 34px;
    }

    /* footer */
    footer {
        background-color: #FFEEF0;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer_flex {
        display: block;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer_flex .ul2 {
        gap: 10px;
        padding: 0;
        margin: 0;
        margin-top: 20px;
    }

}