@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-color: #ff0e5e;
    --secondary-color: #70c497;
    --secondary-color-transparent: #1c141479;
    --bg-color-light: #e3e3e3;
    --bg-color-dark: #2a2a2a;
    --text-color-light: #f7f2f2;
    --text-color-dark: #2a2a2a;
    --shadow-color: 0 5px 15px rgba(0,0,0,0.25);
}

/* 
======================================================================================
Theme Style Start here...
======================================================================================*/
.container-full{
    width: 100vw;
    height: 100vh;
    background-image: url(../images/background.jpg);
    background-size: 100vw 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    width: 96%;
    height: 96%;
    margin: 0 auto;
}
.content-theme{
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color-transparent);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    
}
.header-section{
    height: 10%;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.20);
    padding: 0 20px;
    z-index: 999;
}
.main-content{
    height: 90%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url(../images/nature.jpg);
    background-size: 100% 100%;
    border-radius: 0 0 15px 15px;
}
.content-all{
    flex-basis: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sidebar-section{
    flex-basis: 20%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 0 0 0 15px;
    grid-area: sidebar;
}

/*======================================================================================
header section style start here...
======================================================================================*/
.menu-icon{
    display: none;
}
.brand-head{
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-head img{
    width: 2.5rem;
    height: 2.5rem;
}
.brand-head h2{
    font-size: 1rem;
}

.login-info{
    display: flex;
    align-items: center;
    gap: 10px;
}
.login-info p{
    text-align: center;
}
.login-info span{
    font-weight: bold;
    letter-spacing: 2px;
}
.login-info img{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50px;
}

/*======================================================================================
sidebar section style start here...
======================================================================================*/

.brand-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}
.brand-logo img {
    width: 6rem;
    height: auto;
}
.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav > li > a{
    width: 200px;
    display: block;
    padding: 8px 20px;
    color: var(--text-color-light);
    font-size: 1rem;
    background-color: var(--primary-color);
    border-radius: 20px;
    transition: linear 0.3s ;
    margin-bottom: 5px;
    box-shadow: inset 0 5px 5px rgba(0,0,0,0.25);
}
.nav i{
    margin-right: 10px;
}
.nav > li >a:hover{
    background-color: var(--secondary-color-transparent);
    color: var(--text-color-light);
    
}
.nav > li > .active{
    background-color: var(--secondary-color-transparent);
    color: var(--text-color-light);
}

/*======================================================================================
content section style here...
======================================================================================*/
.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content-head{
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 15px 15px 0 0;
}
.content-head h3{
    text-align: center;
    font-size: 24px;
    padding: 10px;
    color: var(--text-color-light);
    text-transform: uppercase;
}

.content-body{
    display: flex;
    flex-direction: column;
    justify-items: center;
    gap: 10px;
    border-radius: 0 0 15px 15px;
    background-color: var(--secondary-color-transparent);
    
}

/*Gift Distribution State table style here*/

.info-tbl{
    width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.info-tbl table{
    width: 100%;
    
    
}
.info-tbl table tr th {
    text-align: left;
    width: 60%;
    color: white;
    border: none;
    font-size: 18px;
}
.info-tbl table tr td {
    text-align: center;
    width: auto;
    color: white;
    border: none;
    font-size: 18px;
}

/*Guest list table style here*/

.guest-tbl{
    overflow-x: auto;
    padding: 10px;
    
}

.guest-tbl table{
    width:700px;
    color: #fff;
    
}
.guest-tbl table tr th{
    font-weight: 700;
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
}
.navigation{
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}
.navigation ul{
    display: flex;
    align-items: center;
}
.navigation ul li{
    transition: linear 0.5s ;
}
.navigation ul li a{
    display: inline-block;
    padding: 5px;
    color: var(--text-color-light);
    font-size: 1rem;
    margin: 0 5px;
}
.navigation ul li a i{
    font-size: 1.5rem;
    border-radius: 25px;
    background-color: var(--primary-color);
}

/* Guest Name Entry form style here*/
.guest-form{
    width: 400px;
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    
}
.guest-form input[type=text], input[type=password], select{
    border: 1px solid #ddd;
    border-radius: 3rem;
    box-shadow: inset 5px 5px 5px rgba(0,0,0,0.25);
}
.guest-form input[type=submit]{
    color: var(--text-color-light);
    background-color: var(--primary-color);
    border-radius: 3rem;
    box-shadow: inset 5px 5px 5px rgba(0,0,0,0.25);
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.5s;
}
.guest-form input[type=submit]:hover{
    box-shadow: inset 15px 5px 15px rgba(0,0,0,0.25);
    letter-spacing: 1px;
}

/* Token Entry Form style here*/
.searchbar{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    
}
.search-box{
    width: 300px;
    height: 2rem;
    position: relative;
    box-shadow: 0 5px 10px rgba(0,0,0,0.25);
    border-radius: 1.5rem;
}
.search-box input{
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 1.5rem;
    background-color: var(--bg-color-light);
}
.search-box > .icon{
    position: absolute;
    width: 2.5rem;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 0 1.5rem 1.5rem 0;
    color: var(--text-color-light);
    text-align: center;
    line-height: 2.3rem;
}
.token-tbl{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.token-tbl table tr th {
    text-align: left;
    min-width: 150px;
    color: white;
}
.token-tbl table tr td {
    text-align: left;
    color: white;
}
.msg-box{
    display: flex;
    justify-content: center;
    color: var(--text-color-light);
    display: none;
}

/* login Form style here*/
.login-form{
    width: 350px;
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
    padding: 15px;
    border-radius: 0 0 15px 15px;
    
}

.login-form input[type=text], input[type=password], input[type=email], select{
    border: 1px solid #ddd;
    border-radius: 3rem;
    box-shadow: inset 5px 5px 5px rgba(0,0,0,0.25);
}
.login-form input[type=submit]{
    color: var(--text-color-light);
    background-color: var(--primary-color);
    border-radius: 3rem;
    box-shadow: inset 5px 5px 5px rgba(0,0,0,0.25);
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.5s;
    margin: 10px 0;
    background-color: var(--primary-color);
    width: 100%;
}
.login-form input[type=submit]:hover{
    box-shadow: inset 15px 5px 15px rgba(0,0,0,0.25);
    letter-spacing: 1px;
}
.forgot-pwd-link, .signup-link{
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
}
.forgot-pwd-link, .signup-link a{
    color: var(--text-color-dark);
}
.forgot-pwd-link a:hover, .signup-link a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}

.signup-link{
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
}
/* 
======================================================================================
Media Queries Style Start here...
======================================================================================*/

@media only screen and (max-width:600px){
    .show-menu{
        display: block;
    }
    .hide-menu{
        display: none;
    }
    .menu-icon{
    display: block;
    font-size: 40px;
    }
    .brand-head{
    display: none;
    }
    
    .container{
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }
    .content-theme{
        width: 100%;
        height: 100%;
        background-color: none;
        }
    .header-section{
        height: 10%;
        border-radius: 0 0 0 0 ;
    }
    .main-content{
        border-radius: 0 0 0 0 ;
        }
    .content-all{
        flex-basis: 100%;
        
        
        }
    .sidebar-section{
        width: 50%;
        height: 100%;
        z-index: 99;
        border-radius: 0 0 0 0 ;
        padding: 0 1rem;
    }
    
    .content-head{
        width: 100%;
        
    }
    .content-body{
        gap: none;
        
    }
    .login-info p{
        font-size: 1.25rem;
    }
    .content-head h3{
    font-size: 1.8rem;
    }
    .info-tbl{
    width: 400px;
    }
    .info-tbl table tr th {
        width: 60%;
        font-size: 1.5rem;
    }
    .info-tbl table tr td{
        font-size: 1.5rem;
        width: 5%;
    }
    .guest-tbl{
        width: 400px;
        
    }
    
    .guest-form{
    background-color: transparent;
    color: #fff;
    }   
    .guest-form input[type=text], select{
        padding: 10px 20px;
        margin-bottom: 1.25rem;
        font-size: 1.5rem;
        background-color:#70c4976f;
        color: #fff;
    }
    .guest-form input[type=radio]{
        
        font-size: 1.5rem;
    }
    .guest-form input[type=submit]{
        width: 100%;
        padding: 10px 20px;
        font-size: 24px;
    }
    .guest-form label{
        font-size: 24px;
    }
    .guest-form input::placeholder{
        color: var(--text-color-light);
        font-size: 24px;
    }
    .radio-btn{
        font-size: 1.5rem;
    }
    .chk-box{
        font-size: 1.5rem;
        color: var(--text-color-light);
    }
    
    .token-tbl table tr td{
    font-size: 1.5rem;
    }
    .token-tbl table tr th{
        font-size: 1.5rem;
    }
    .searchbar{
        width: 100%;
    }
    .search-box{
    height: 3rem;
    }
    .search-box input{
        font-size: 20px;
    }
    .search-box > .icon{
        font-size: 1.5rem;
        width: 4rem;
        line-height: 3.5rem;
    }
    .login-form{
        width: 400px;
    }
    .login-form input[type=text], input[type=password]{
        padding: 10px 20px;
        margin-bottom: 1.25rem;
        font-size: 20px;
        background-color:#70c4976f;
        color: #fff;
    }
    .login-form label{
        font-size: 20px;
    }
    .forgot-pwd-link{
        font-size: 20px;
        
    }
    .forgot-pwd-link .chk-box {
        color: var(--text-color-dark);
        
    }
    .signup-link p, .signup-link a{
        font-size: 20px;
    }
    .login-form input[type=submit]{
        width: 100%;
        padding: 10px 20px;
        font-size: 24px;
    }
    .login-form .chk-box {
        color: var(--text-color-dark);
        
    }
}
