
@import url('../css/fonts.css');


html, body{
    margin: 0%;
    box-sizing: border-box;
    overflow-x: hidden;
}
 
:root{ 

    /*      Theme colors        */
    --text-gray: #3f4954;
    --text-light : #686666da;
    --bg-color: #0f0f0f;
    --white: #ffffff;
    --midnight: #104f55;

    /* gradient color   */
    --sky: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);

    /*      theme font-family   */
    --Abel: 'Abel', cursive;
    --Anton: 'Anton', cursive;
    --Josefin : 'Josefin', cursive;
    --Lexend: 'Lexend', cursive;
    --Livvic : 'Livvic', cursive;
}


/* ---------------- Global Classes ---------------*/


a{
    text-decoration: none;
    color: var(--text-gray);
    
}

.flex-row{
    display: flex;
    flex-direction: row;    
    flex-wrap: wrap;
}

ul{
    list-style-type: none;
}

h1{
    font-family: var(--Lexend);
    font-size: 2.5rem;
}

h2{
    font-family: var(--Lexend);
}

h3{
    font-family: var(--Abel);
    font-size: 1.3rem;
}

button.btn{
    
    border: none;
    border-radius: 2rem;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-family: var(--Livvic);
    cursor: pointer;
    
}

span{
    font-family: var(--Abel);
}

.container{
    margin: 0 5vw;
}

.text-gray{
    color: var(--text-gray);
}

p{
    font-family: var(--Lexend);
    color: var(--text-light);
}


.his{
    color: rgb(237, 231, 231); 
    font-weight: lighter; 
    font-style:italic; 
    font-size: 125px;
    font-family: Brush Script MT, Brush Script Std, cursive;
    text-shadow: 0px 0px 5px #3f4954;
}

.hisi{
    font-size: 2rem;
    text-shadow: 0px 0px 5px #3f4954;

}

.spa{
    color: #eb4a4a;
}
/* ------x------- Global Classes -------x-------*/

/* --------------- navbar ----------------- */
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Quicksand', sans-serif;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
}

:root{
	--bg-color:wheat;
	--text-color: wheat;
	--main-color: #eb4a4a;
	--second-color: gray;
	--other-color: #12141c;
	--h1-font: 5.2rem;
	--h2-font: 3.5rem;
	--p-font: 1.1rem;
}

header{
	position: fixed;
	right: 0;
	top: 0%;
	width: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	padding: 22px 16%;
	border-bottom: 1px solid transparent;
	transition: all .40s ease;
}

.logo_container{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo_container img{
    filter: drop-shadow(0 0 0.75rem white);
}

.logo_text .logo_up{
    font-family: Brush Script MT, Brush Script Std, cursive;
    font-size: 2rem;
}

.logo_text p{
    color: black;
}



.logo img{
	width: 50px;
	height: 50px;
}

.logo_btn{
    color: var(--white);
    background-color: rgba(0, 128, 0,0.5);
    font-size: 1.5rem;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: bold;
    border: 3px solid black;
}

.navbar .logo_mbtn{
    display: none;
}


.navbar{
	display: flex;
    align-items: center;
    gap: 2rem;
}
.navbar a {
    font-size: var(--p-font);
    font-weight: 600;
    padding: 10px 0px;
    margin: 0 2px;
    border-radius: 0.5rem;
    position: relative;
    display: inline-block;
    transition: all 0.40s ease;
    text-decoration: none;
}
.navbar a::after {
    content: "";
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 0; 
    height: 2px; 
    background-color: rgba(0, 128, 0,0.5);
    transition: width 0.4s ease; 
}

.navbar a:hover::after {
    width: 100%; /* Expand underline to full width */
}


/* Dropdown-specific styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    text-transform: capitalize;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-align: center;
    width: 150px;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    font-size: var(--p-font);
    font-weight: 600;
    padding: 5px 15px;
    display: block;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(0, 128, 0, 0.1);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}



#menu-icon{
	font-size: 40px;
	color: var(--white);
    text-shadow: 0px 0px 5px black;    
	z-index: 10001;
	cursor: pointer;
	display: none;
}



span{
	color: var(--main-color);
}



header.sticky{
	padding: 10px 16%;
    background-color: #104f55;
	border-bottom: 1px solid black;
}

header.sticky .logo_text p{
    color: white;
}

header.sticky .navbar a{
    color: var(--white);
}
header.sticky .logo_btn{
    border: 2px solid white;
}

header.sticky .dropdown-menu {
    background: #104f55;
}


header.sticky .navbar a::after {
    background-color: var(--white);
}

@media (max-width: 1325px){
	header{
		padding: 16px 3%;
        color: #a1c4fd;
	}
	header.sticky{
		padding: 8px 3%;
	}
    
	
	
}

@media (max-width: 970px){
	:root{
		--h1-font: 4.2rem;
	  --h2-font: 2.9rem;
	  --p-font: 1rem;
	}
	
			
}

@media (max-width: 830px){
	#menu-icon{
		display: block;
	}
	.navbar{
		position: absolute;
		top: -600px;
		right: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		background: #12141c;
		text-align: left;
		transition: all .40s ease;
	}
	.navbar a{
		display: block;
		padding: 1rem;
		margin: 1rem;
	}
	.navbar.active{
		top: 100%;
	}
	:root{
		--h1-font: 3.7rem;
	  --h2-font: 2.7rem;
	}
	
			
}
@media (max-width: 768px){
	.grid{	
		grid-template-columns: repeat(5, 124px);
		grid-template-rows: repeat(3,  110px);
}
nav ul {
	display:inline;
	}	
	nav ul ul {
	position:relative;
		}
		.grids{	
			grid-template-columns: repeat(2, 165px);
			grid-template-rows: repeat(9, 150px);
			
		}
		
}
@media (max-width: 480px){
	.grid{	
		grid-template-columns: repeat(3, 107px);
		grid-template-rows: repeat(4, 107px);
}
.grids{	
	grid-template-columns: repeat(2, 165px);
	grid-template-rows: repeat(9, 150px);
	
}

nav ul {
	display:inline;
	}	
	nav ul ul {
	position:relative;
		}
	.mv{
		height: 70px; width: 80px; 
	}
}

/* -------x------- navbar ---------x------- */




/* ----------------- Main Content----------- */



/* --------------- Site title ---------------- */


main .site-title{ 
    background: url('/img/background.jpg');
    background-size: cover;
    padding: 0 0 300px 0;
    margin-top: 5%;
    display: flex;
    justify-content: center;
    animation: change 20s infinite ease-in-out;
}

@keyframes change{
    0%
    { 
      background: url("/img/background0.jpg") no-repeat;
      background-size: cover;
      background-position: center;
  }
    20%
    {
      background: url("/img/background.jpg") no-repeat;
      background-size: cover;
      background-position: center;
    }
    60%
    {
      background: url("/assets/bhiragana.jpg") no-repeat;
      background-size: cover;
      background-position: center;
    }
    80%
    {
      background: url("/img/background2.avif") no-repeat;
      background-size: cover;
      background-position: center;
    }
    100%
    {
      background: url("/img/background3.jpg") no-repeat;
      background-size: cover;
      background-position: center;
    }
  }
main .site-title .site-background{
    padding-top: 10rem;
    text-align: center;
    color: var(--white);
}

main .site-title h1, h3{
    margin: .3rem;
    
}

main .site-title .btn{
    margin: 1.8rem;
    margin-top: 3rem;
    background-color: rgb(0, 128, 0);
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    padding: 20px 40px;
    border-radius: 24px;
    border: 3px solid var(--white);
    transition: 0.5s;
}

main .site-title .btn:hover{
    box-shadow: 10px 10px 5px black ;
    border: 1px solid var(--white);
    color: var(--white);
}

/* --------x------ Site title --------x------- */

/* --------------- Blog Carousel ------------ */

main .blog{
    background: url('/assets/Abract01.png');
    background-repeat: no-repeat;
    background-position: right;
    height: 100vh;
    width: 100%;
    background-size: 65%;
}

main .blog .blog-post{
    padding-top: 6rem;
}

main .blog-post .blog-content{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 80%;
    margin: 3rem 2rem;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
}

main .blog-post .blog-content img{
    height: 300px;
    object-fit: cover;
    object-position: center;
}

main .blog-content .blog-title{
    padding: 2rem 0;
}

main .blog-content .btn-blog{
    padding: .7rem 2rem;
    background: green;
    margin: .5rem;
    border: 2px solid black;
   transition: 0.5s;
}

main .blog-content .btn-blog a{
    color: var(--white);
}

main .blog-content .btn-blog:hover{
    box-shadow: 0px 5px 5px black;
}
main .blog-content span{
    display: block;
}

section .container .owl-nav{
    position: absolute;
    top: 0%;
    margin: 0 auto;
    width: 100%;
}

.owl-nav .owl-prev .owl-nav-prev,
.owl-nav .owl-next .owl-nav-next{
    color: var(--text-gray);
    background: transparent;
    font-size: 2rem;
}

.owl-theme .owl-nav [class*='owl-']:hover{
    background: transparent;
    color: var(--midnight);
}

.owl-theme .owl-nav [class*='owl-']{
    outline: none;
}


/* -------x------- Blog Carousel -----x------ */

/* ---------------- Site Content ----------------*/

main .site-content{
    display: grid;
    grid-template-columns: 70% 30%;
}

main .post-content{
    width: 100%;
    
}

main .site-content .post-content > .post-image, .post-title{
    padding: 1rem 2rem;
    position: relative;
}

main .site-content .post-content > .post-image .post-info{
    background: var(--sky);
    padding: 1rem;
    position: absolute;
    bottom: 0%;
    left: 20vw;
    border-radius: 3rem;
}

main .site-content .post-content > .post-image > div{
    overflow: hidden;
}

main .site-content .post-content > .post-image .img{
    width: 100%;
    transition: all 1s ease;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

main .site-content .post-content > .post-image .img2{
    width: 100%;
    transition: all 1s ease;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

main .site-content .post-content > .post-image .img:hover{
    transform: scale(1.3);
}

main .site-content .post-content > .post-image .post-info span{
    margin: 0 .5rem;
}

main .post-content .post-title a{
    font-family: var(--Anton);
    font-size: 1.5rem;
}

.site-content .post-content .post-title .post-btn{
    border-radius: 0;
    padding: .7rem 1.5rem;
    background: var(--sky);
}

.site-content .pagination{
    justify-content: center;
    color: var(--text-gray);
    margin: 4rem 0;
}

.site-content .pagination a{
    padding: .6rem .9rem;
    border-radius: 2rem;
    margin: 0 .3rem;
    font-family: var(--Lexend);
}

.site-content .pagination .pages{
    background: var(--text-gray);
    color: var(--white);
}

/* -------x-------- Site Content --------x-------*/


/* --------------- Sidebar ----------------------- */

.site-content > .sidebar .category-list{
    font-family: var(--Livvic);   
}

.site-content > .sidebar .category-list .list-items{
    background: var(--sky);
    padding: .4rem 1rem;
    margin: .8rem 0;
    border-radius: 3rem;
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.site-content > .sidebar .category-list .list-items a{
    color:  black;
}

.site-content .sidebar .popular-post .post-content{
    padding: 1rem 0;
}

.site-content .sidebar .popular-post h2{
    padding-top: 8rem;
}

.site-content .sidebar .popular-post .post-info{
    padding: .4rem .1rem !important;
    bottom: 0rem !important;
    left: 1.5rem !important;
    border-radius: 0rem !important;
    background: white !important;
}

.site-content .sidebar .popular-post .post-title a{
    font-size: 1rem;
}

.site-content .sidebar .newsletter{
    padding-top: 10rem;
}

.site-content .sidebar .newsletter .form-element{
    padding: .5rem 2rem;
}

.site-content .sidebar .newsletter .input-element{
    width: 80%;
    height: 1.9rem;
    padding: .3rem .5rem;
    font-family: var(--Lexend);
    font-size: 1rem;
}

.site-content .sidebar .newsletter .form-btn{
    border-radius: 0;
    padding: .8rem 32%;
    margin: 1rem 0;
    background: var(--sky);
}

.site-content .sidebar .popular-tags{
    padding: 5rem 0;
}

.site-content .sidebar .popular-tags .tags .tag{
    background: var(--sky);
    padding: .4rem 1rem;
    border-radius: 3rem;
    margin: .4rem .6rem;
}


/* -------x------- Sidebar -----------x----------- */

/* review*/

.review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
  
  .review .content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
  }
  
  .review .content span {
    font-size: 2rem;
    color: #29d9d5;
    margin-left: .2em;
  }
  
  .review .content h3 {
    font-size: 3rem;
    color: rgb(10, 10, 10);
  }
  
  .review .content p {
    font-size: 1.4rem;
    color: rgb(248, 186, 78);
    padding: 1rem 0;
    line-height: 2;
  }
  
  .review .box-container {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .review .box-container .box {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
    border-radius: 1rem;
    padding: 2rem;
    background: rgb(251, 247, 247);
  
    border: 0.2rem solid rgb(248, 186, 78);
  }
  
  .review .box-container .box:hover {
    border: 0.2rem solid #29d9d5;
  }
  
  .review .box-container .box p {
    font-size: 1rem;
    padding-bottom: 1rem;
    line-height: 2;
    color: #aaa;
  }
  
  .review .box-container .box .user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  
  .review .box-container .box .user img {
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
  }
  
  .review .box-container .box .user h3 {
    font-size: 1.7rem;
    color: rgb(12, 12, 12);
  }
  
  .review .box-container .box .user span {
    color: #aaa;
    font-size: 1.5rem;
  }
  
/* ---------x------- Main Content -----x----- */

.ratings {
    text-align: center;
    margin-top: 30px;
  }
  
  .ratings h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .ratings p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .average-rating {
    font-weight: bold;
    color: #ffc107;
  }
  
  .rating-breakdown {
    display: flex;
    justify-content: center;
  }
  
  .star-rating {
    display: flex;
    align-items: center;
    margin-left: 8px;
  }
  
  .fa-star {
    color: #ffc107;
    font-size: 20px;
    margin-right: 5px;
  }
  .fa-star {
    color: #ffc107;
    font-size: 20px;
    margin-right: 5px;
  }
  .fa-star-o {
    color: lightgray;
    font-size: 20px;
    margin-right: 5px;
  }
  
  .rating-count {
    font-size: 14px;
    color: gray;
    margin-left: 10px;
  }

  /**/
  .rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .rating-star {
    font-size: 24px;
    color: lightgray;
    cursor: pointer;
    margin-right: 10px;
  }
  
  .rating-star:hover,
  .rating-star:hover ~ .rating-star {
    color: #ffc107;
  }
  
  .rating-result {
    font-size: 18px;
    margin-left: 10px;
    color: gray;
  }
  
  #rating-value {
    font-weight: bold;
  }

/* ----------------- Footer --------------------- */

footer.footer{
    height: 100%;
    background-color: #104f55;
    position: relative;
}

footer.footer .container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

footer.footer .container > div{
    flex-grow: 1;
    flex-basis: 0;
    padding: 3rem .9rem;
}

footer.footer .container h2{
    color: var(--white);
    text-shadow: 0px 0px 5px black;
    margin-bottom: 10px;
    font-style: italic;
}
footer.footer .container p{
    color: var(--white);
}

footer.footer .newsletter .form-element{
    background: black;
    display: inline-block;
}

footer.footer .newsletter .form-element input{
    padding: .5rem .7rem;
    border: none;
    background: transparent;
    color: white;
    font-family: var(--Josefin);
    font-size: 1rem;
    width: 74%;
}

footer.footer .newsletter .form-element span{
    background: var(--sky);
    padding: .5rem .7rem;
    cursor: pointer;
}

footer.footer .instagram div > img{
    display: inline-block;
    width: 25%;
    height: 50%;
    margin: .3rem .4rem;
}

footer.footer .follow div i{
    color: var(--white);
    padding: 0 .4rem;
}

footer.footer .rights{
    justify-content: center;
    font-family: var(--Josefin);
}

footer.footer .rights h4{
    color: var(--white);
}

footer.footer .move-up{
    position: absolute;
    right: 6%;
    top: 50%;
}

footer.footer .move-up span{
    color: var(--midnight);
}

footer.footer .move-up span:hover{
    color: var(--white);
    cursor: pointer;
}

/* ---------x------- Footer ----------x---------- */

/*              Viewport less then or equal to 1130px            */


.massage_title{
    text-align: center;
}




























































@media only screen and (max-width: 1130px){
    .site-content .post-content > .post-image .post-info{
        left: 2rem !important;
        bottom: 1.2rem !important;
        border-radius: 0% !important;
    }

    .site-content .sidebar .popular-post .post-info{
        display: none !important;
    }

    footer.footer .container{
        grid-template-columns: repeat(2, 1fr);
    }

}

/*      x       Viewport less then or equal to 1130px    x     */


/*              Viewport less then or equal to 750px            */

@media (max-width: 768px) {

    main .site-content .post-content > .post-image .img{
        height: 250px;
    }
    .dropdown{
        display: none;
    }
    
    .nav .nav-menu, .nav .nav-items{
        flex-direction: column;
    }

    .nav .toggle-collapse{
        display: initial;
    }

    main .site-content{
        grid-template-columns: 100%;
    }

    footer.footer .container{
        grid-template-columns: repeat(1, 1fr);
    }




/*        x      Viewport less then or equal to 750px       x     */


/*              Viewport less then or equal to 520px            */


    .navbar{
        
        gap: 0;
    }


    .navbar .logo_mbtn{
        display: block;
        color: var(--white);
        background-color: rgba(0, 128, 0,0.5);
        font-size: 1.5rem;
        padding: 10px 20px;
        border-radius: 24px;
        font-weight: bold;
        border: 3px solid black;
    }

    .logo_text .logo_up{
        font-size: 1.2rem;
    }

    .logo_text .logo_down{
        font-size: 1rem;
    }

    .logo_text p{
        color: var(--white);
        text-shadow: 0px 0px 5px black;
    }
    .logo_btn{
        display: none;
    }
    
main .site-title{ 
    margin-top: 0;
    height: 100vh;
    animation: change 20s infinite ease-in-out;

}



    .navbar a{
        color: #fff;
    }
   
@keyframes change{
    0%
    { 
      background: url("/img/vbg.jpg") no-repeat;
      background-size: cover;
      background-position: center;
  }
    20%
    {
      background: url("/img/background.jpg") no-repeat;
      background-size: cover;
      background-position: center;
    }
    60%
    {
        background: url("/img/vbg2.jpg") no-repeat;
      background-size: cover;
      background-position: center;
    }
    80%
    {
      background: url("/img/vbg3.jpg") no-repeat;
      background-size: cover;
      background-position: center;
    }
    100%
    {
      background: url("/img/vbg3.jpg") no-repeat;
      background-size: cover;
      background-position: center;
    }
  }

    .hi{
        color: rgb(255, 255, 255);
    }
.his{
    color: #ffffff; 
    font-size: 50px;
}

    main .blog{
        height: 125vh;
    }

    .site-content .post-content > .post-image .post-info{
        display: none;
    }

    footer.footer .container > div{
        padding:  1rem .9rem !important;
    }

    footer .rights{
        padding: 0 1.4rem;
        text-align: center;
    }

    nav .toggle-collapse{
        width: 80% !important;
    }
    

    main .blog-post .blog-content img{
        height: 220px;
        
    }
    /* ======================================= */

.review .content span {
    font-size: 2rem;
    
    margin-left: 2em;
  }
  .review .content p {
    display: none;
  }
  .review .content h3 {
    display: none;
  }

}

/*        x      Viewport less then or equal to 520px       x     */




.register-container {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 500px;
}
.register-header {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}
.register-form-group {
    margin-bottom: 15px;
}
.register-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
    text-align: left;
}
.register-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.register-form-group input:focus {
    border-color: #007bff;
    outline: none;
}
.register-btn {
    background-color: #104f55;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    font-weight: bold;
}
.register-btn:hover {
    background-color: #0056b3;
}
.register-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.register-actions a {
    font-weight: bold;
    font-size: 14px;
    color: var(--main-color);
    text-decoration: none;
}
.register-actions a:hover {
    text-decoration: underline;
}

.register-error {
    color: #ff0000;
    font-size: 14px;
    margin-top: 5px;
    text-align: left;
}


/* ========================================= */


.login-container {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 500px;
}
.login-header {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}
.login-form-group {
    margin-bottom: 15px;
}
.login-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
    text-align: left;
}
.login-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.login-form-group input:focus {
    border-color: #007bff;
    outline: none;
}
.login-remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
}
.login-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.login-actions a {
    font-weight: bold;
    font-size: 14px;
    color: var(--main-color);
    text-decoration: none;
}
.login-actions a:hover {
    text-decoration: underline;
}
.login-btn {
    background-color: #104f55;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    font-weight: bold;
}
.login-btn:hover {
    background-color: #0056b3;
}

.login-error {
    color: #ff0000;
    font-size: 14px;
    margin-top: 5px;
    text-align: left;
}




@media (max-width: 768px) {

    .register-container,.login-container{

        width: 300px;
    }

    .register-container{
        margin-top: -3rem;
    }
}
