@font-face {
    font-family: Shabnam;
    src: url(../fonts/Shabnam.ttf);
}

* {
    font-family: Shabnam;
}

body {
    margin: 0;
    background: #f5f5f5;
}

section {
    padding: 20px 40px;
}

img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    display: block;
}

header {

    background: #45b8ac;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo {
    width: 40px;
    height: auto;
}

nav {
    margin-right: 30px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    margin-left: 10px;
}

nav a:hover {
    color: #007bff;
}

button {
    background: #45b8ac;
    color: white;
    border: 1px solid white;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #1f877d;
}

#loginbtn{
    border: none;
    padding: 0;
}
#loginbtn:hover{
    background:none;
}
#loginbtn img{
    width: 45px;
}
input,
select,
textarea {
    width: calc(100% - 24px);
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #3498db;
    outline: none;
}

.form-group {
    margin-bottom: 25px;
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #555;
    font-weight: bold;
}

.text-link {
    margin-top: 30px;
    color: #666;
}
.text-link{
    color: #45b8ac;
    text-decoration: none;
    font-weight: bold;
}

.text-link:hover {
    text-decoration: underline;
}

textarea {
    resize: none;
}

footer {
    color: #666;
    font-size: 15px;
    text-align: center;
}

h2 {
    color: #3c3c3c;
}
h3{
    color: #3c3c3c;
}
h1{
    color: #3c3c3c;
}
html[data-theme="dark"] body{
    background: #4a4a4a;
}
html[data-theme="dark"] h2{
   color:#f5f5f5;
}
html[data-theme="dark"] h3{
   color:#f5f5f5;
}
html[data-theme="dark"] h1{
   color:#f5f5f5;
}
html[data-theme="dark"] header{
   background: #3c3c3c;
}
html[data-theme="dark"] button{
   background: #3c3c3c;
}
html[data-theme="dark"] button:hover{
   background: #212121;
}
html[data-theme="dark"] .form-group label{
   color: #e8e8e8;
}
html[data-theme="dark"] .text-link{
   color: #e8e8e8;
}
html[data-theme="dark"] footer{
   color: #e8e8e8;
}
html[data-theme="dark"] p{
   color: #e8e8e8;
}
#changethemebtn{
    border: none;
    padding: 0;
}
#changethemebtn:hover{
    background: none;
}