* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    /* background: #1e2538; */
    background: #dbe6e6;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

header {
    background: #615d5d;
    padding: 15px 50px;
    display: flex;
    justify-content: space-around; /* Space between logo, title, and menu icon */
    align-items: center;
    font-size: 18px;
    color: #fff;
}

header .logo img {
    width: 60px; /* Logo size */
    height: auto;
    cursor: pointer;
}

header .title{
    margin-right: 40px;
}

/* header .title h1{
    color: #dbd4d1;
} */

.menu-icon {
    display: block;
    font-size: 30px;
    cursor: pointer;
}




/* Side Menu */
/* Sidebar Styles */
.sidebar {
    width: 295px;
    height: 100vh;
    background: #888181;
    position: fixed;
    top: 0;
    left: -295px; /* Initially hidden */
    padding-top: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.5s ease;
    z-index: 1000;
}

.sidebar.open {
    left: 0; /* Sidebar visible when class 'open' is added */
}

.menu-items {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 20px;
    gap: 15px;
    margin-top: 30px;
}
@media (max-width: 1600px) {
    .menu-items {
        margin-top: 45px;
    }
}
@media (max-width: 1440px) {
    .menu-items {
        margin-top: 47px;
    }
}
@media (max-width: 425px) {
    .menu-items {
        margin-top: 23px;
    }
}
@media (max-width: 375px) {
    .menu-items {
        margin-top: 20px;
    }
}
.menu-items .item {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
    background: #524e4e;
}

.menu-items .item:hover {
    background: #2b2a2a;    
}


.menu-items .item a {
    text-decoration: none;
    color: #eaeaea;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-items .item a i {
    font-size: 1.2rem;
}

.sidebar .menu-items .link{
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
}

/* footer {
    background: #121212;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
} */

/* Main content wrapper */
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 0px 100px;
}

.main .container {
    width: 1000px;
    /* height: 450px; */
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 50px;
    background: #dbe6e6;
    /* background: #13834e; */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    position: relative;
}

.container .close{
   position: absolute;
   top: 10px;
   right: 10px;
   transform: translate(-10, -10);
   scale: 1.8;
   color: #888;
}

/* Boxes */
.main .container .box{
    color: #121212;
}

.main .container .box_1 {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
}

.succes i{
    font-size: 55px;
    color: #0cad17;
}

/* .main .container .box_1 .success .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #416454;
    border-radius: 50%;
}

.main .container .box_1 .success .item i {
    scale: 1.5;
    color: #0e9e18;
} */

.main .container .box strong {
    font-size: 17px;
}


.main .container .box_2 strong {
    display: flex;             /* Use Flexbox for centering */
    justify-content: center;   /* Horizontally center the text */
    align-items: center;       /* Vertically center the text */
    text-align: center;        /* Ensures text is centered when it wraps */
    word-wrap: break-word;     /* Allow text to wrap to the next line */
    padding: 10px;             /* Add some padding around the text */
    overflow: visible;         /* Allow the overflow to be visible */
}

.main .container .box_3 strong {
    font-size: 25px;
}

.main .container .box_3 {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
}

.main .container .box_3 .sub_box {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
}

.main .container .box_3 .sub_box .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #454d49;
    border-radius: 50%;
}

.main .container .box_3 .sub_box .item i {
    scale: 1.5;
    color: #fff;
}

.main .container .box_4 input {
    background: #0cad17;
    /* border: 2px solid #121; */
    border: none;
    cursor: pointer;
    width: 200px;
    height: 50px;
    border-radius: 25px;
    font-size: 20px;
    color: #fff;
}


.main .container .box_4 input:hover {
    background: #0e9e18;
}

/* Body overlay color change */
body.body-overlay {
    background-color: #2a343e; /* Darker shade for overlay effect */
}


@media (max-width: 980px) {
    .main{
        padding: 0 50px;
    }
}


@media (max-width: 680px){
    .main{
        padding: 0 30px;
    }

    header h1 {
        font-size: 25px;
    }
}


/* Mobile and Responsive Styles */
@media (max-width: 768px) {
    /* Adjustments for smaller screens */
    header {
        font-size: 18px;
    }
    .main .container {
        width: 100%;
        padding: 20px;
    }
    .menu-icon {
        font-size: 28px;
    }
}

@media (max-width: 500px){
    header{
        padding: 10px 30px;
    }
    header h1 {
        font-size: 20px;
    }
}


@media (max-width: 465px){
    header .logo img {
        width: 50px;
    }
    header{
        padding: 10px 20px;
    }
    .main .container .box_1 h1{
        font-size: 25px;
    }
    .main .container .box_3 .sub_box {
        column-gap: 25px;
    }
    .main .container .box_3 .sub_box .item {
        width: 40px;
        height: 40px;
    }
    .main .container .box_3 .sub_box .item i {
        scale: 1.3;
    }
    .main .container .box_4 input {
        width: 150px;
        height: 40px;
    }
    .main .container .box_3 strong {
        font-size: 20px;
    }

}


@media (max-width: 400px){
    header .logo img {
        width: 45px;
    }
    .main{
        padding: 0 20px;
    }

    .main .container .box_1 h1{
        font-size: 20px;
    }

    .main .container .box_3 .sub_box .item {
        width: 35px;
        height: 35px;
    }

    .main .container .box_3 .sub_box .item i {
        scale: 1.2;
    }
    
    .main .container .box_4 input {
        width: 140px;
        height: 40px;
    }

}
@media (max-width: 375px){
    header{
        padding: 10px 15px;
    }
    header h1 {
        font-size: 18px;
    }
    footer p{
        font-size: 14px;
    }
}
@media (max-width: 323px){
    header{
        padding: 10px 12px;
    }
    header .title h1 {
        font-size: 16px;
    }
}