:root{
    --primary: #FFA157;
    --secondary: #3B0CF8;
    --dark: #555555;
    --gray: #ccc;
    --light: #fff;
    --gcash-bg: #2162D2;
    --shadow: 0px 2px 2px #555;
    --btn-bg: url("../assets/img/btn-bg.png");
}

body{
    background-image: url("../assets/img/bg.png");
    background-attachment: fixed;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    align-content: center;
}


p{
    margin: 0;
    padding: 0;
}
/* CONTAINER STYLE */
.container, .container-wide{
    margin-inline: auto;
    border: 1px solid var(--gray);
    width: min(95vw, 550px);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 5px 5px 10px #666;
    position: relative;
    height: max(650px, fit-content);
    padding: 30px 50px;
    margin-block: 50px;
}

.container-wide{
    width: min(95vw, 1220px);
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.header a{
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
}


.sub-header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary);
}

.sub-header h1{
    font-size: 50px;
    font-weight: bolder;
    text-shadow:var(--shadow);
}

.sub-header svg{
    filter: drop-shadow(var(--shadow));
}



 .profile-av{
    background-color: var(--light);
    width: 60px;
    height: 60px;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bolder;
    color: var(--primary);
    border: 4px solid var(--primary);
    box-shadow: var(--shadow);
    position: relative;
}

#premium-badge{
    position: absolute;
    bottom: 7px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: transparent;
}


.header img{
    width: 250px;
}




.container .header{
    text-align: center;
}


.container .header img{
    width: 500px;
}


.nav-btn{
    width: 100%;
    display: block;
    text-align: center;
    margin-inline: auto;
}


.container .submit-btn, .nav-btn{
   width: 300px;
   padding: 10px;
   border: none;
   border-radius: 20px;
   margin-block: 20px;
    font-size: 19px;
   font-weight: bold;
   color: var(--light);
   background-image: var(--btn-bg);
   background-position: center;
   background-size: cover;
   box-shadow: var(--shadow);
}



/* LINKS */
a{
    color: var(--secondary);
    font-weight: bold;
    text-decoration: none;
}

/* INPUT CONTAINER */
.input-container{
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: start;
    background-color: var(--light);
    border-radius: 50px;
    padding: 10px 0px;
    gap: 10px;
    border: 1px solid var(--primary);
}

.input-container svg{
    /* width: 120px; */
    height: 50px;
    padding: 0;
    margin: 0;
}

.input-container input{
   width: 80%;
   border: none;
   font-size: 19px;
   outline: none;
   color: var(--primary);
   font-weight: bold;
}

.input-container input::placeholder{
    color: var(--primary);
    font-weight: bold;
}





@media(max-width: 560px){
     .container, .container-wide{
        padding: 25px;
     }
    .container .header img{
        width: 400px;
    }

    .sub-header{
        margin-top: 20px;
       gap: 5px;
    }

    .sub-header h1{
        font-size: 35px;
    }

    .sub-header svg{
        width: 35px;
        height: 45px;
    }
}



@media(max-width: 470px){
    .container .header img{
        width: 80vw;
    }

     .container-wide .header img{
        width: 30vw;
     }

    .profile-av{
        width: 45px;
        height: 45px;
        font-size: 25px;
    }

    #premium-badge{
        bottom: 5px;
        right: 0px;
        width: 18px;
        height: 18px;
    }

    .container-wide .header small{
        font-size: 12px;
    }



    .input-container input{
        width: 75%;
        font-size: 16px;
    }
}