:root{
/*body*/
--bg-color: #121212;
--text-color: #ffffff;

/*Header*/
--bg-header: #2C3041;
--text-header: #ffffff;
--currency-header: #0f1724;
--solid-header: #1da1f2;
--border-header: rgba(29,161,242,0.3);
--currency-list: #1b2433;
--currency-hover: #2a3547;





--bg-btn: #2C3041;
--line: gray;
--fbtn: #333;
/*Login and register*/
--bg-countaner: #1e1e1e;
--input-bg: #2a2a2a;
--input-text: #fff;
--input-solid: #444;

/*Small button*/


--bg_dash: #071025;
--text_dash:#e7f7fb;

  --muted: #9aa0a6;
  --accent: royalblue;
  --accent-2: gold;
}

/* dark / night */
.dark-mode{
/*body*/
--bg-color: #121212;
--text-color: #ffffff;

/*Header*/
--bg-header: #2C3041;
--text-header: #ffffff;
--currency-header: #0f1724;
--solid-header: #1da1f2;
--border-header: rgba(29,161,242,0.3);
--currency-list: #1b2433;
--currency-hover: #2a3547;






--line: gray;
--fbtn: #cfdafb;
/*Login and register*/
--bg-countaner: #1e1e1e;
--input-bg: #2a2a2a;
--input-text: #fff;
--input-solid: #444;

/*Small button*/
--bg-btn: #2C3041;

--bg_dash:#071025;
--text_dash:#e7f7fb;

  --muted: #9aa0a6; /* neutral light */
  --accent: royalblue;
  --accent-2: gold;
}

/*body css*/
body{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
font-family: Arial, sans-serif;
transition: background 0.3s, color 0.3s;
background:  #121212;
color: #ffffff;

}




/*Top header*/
.headertop {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
background: var(--bg-header);
color: var(--text-header);
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 0px;
border-bottom: 1px solid var(--muted);;
height: 60px;
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1000;

}
/* Profile picture */
.headertop .picbox{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
width: 180px;
height:100%;
overflow:hidden;
}
.headertop .picbox .pic{
margin: 2px 0px 0px 0px;
padding: 0px 0px 0px 0px;
text-align:left;
justify-content:left;
width: 180px;
height: 56px;
/*object-fit: cover;*/
cursor: pointer;
}
.headertop .btns {
margin: 0px 10px 0px 0px;
padding: 0px 0px 0px 0px;
display: flex;
gap: 16px;
align-items: center;
}
.headertop .btns .hbtn {
background: none;
border: none;
font-size: 25px;
cursor: pointer;
position: relative;
padding: 6px;
transition: 0.2s;
color: var(--text-header);
}
.headertop .btns .hbtn:hover {
transform: scale(1.2);
}
/*Currency Box */
.currency-box {
position: relative;
display: inline-block;
}
/*Currency Button */
.currency-btn {
background: var(--currency-header);
color: var(--text-header);
border-color: var(--text-header);
padding: 6px 0;
border-radius: 30px;
border: 2px solid var(--solid-header);
cursor: pointer;
font-weight: bold;
display: flex;
align-items: center;
gap: 6px;
width: 60px;
justify-content: center;
font-size: 13px;
text-align: center;
transition: 0.3s;
}
/*Loader */
.loader {
width: 14px;
height: 14px;
border: 2px solid var(--border-header);
border-top: 2px solid var(--solid-header);
border-radius: 50%;
display: none;
animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to   { transform: rotate(360deg); }
}
/*Dropdown */
.currency-list {
display: none;
position: absolute;
top: 40px;
right: 0;
background: var(--currency-list);
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
width: 90px;
overflow: hidden;
z-index: 999;
}
.currency-list div {
padding: 10px;
cursor: pointer;
text-align: center;
color: var(--text-header);
font-weight: bold;
font-size: 13px;
}
.currency-list div:hover {
background: var(--currency-hover);
}
/* Menu Box */



























/*Login*/
.form_box{
padding: 0px 25px 25px 25px;
margin: 0px 10px 0px 10px;
max-width: 400px;
border-radius: 14px;
border: 1px solid rgba(255,255,255,0.15);
box-shadow: 0 3px 12px rgba(0,0,0,0.3);
transition: 0.3s;
background-color: var(--bg-countaner);
}
.form_box .tit2{ 
margin: 20px 0px 0px 0px;
padding: 0px 0px 0px 0px;
text-align: center; 
margin-bottom: 25px;
font-size: 18px;
color: var(--text-color);
}
.form_box .form-group{
position: relative;
}
.form_box .form-group .inputbox {
width: 100%;
padding: 12px 45px;
font-size: 16px;
margin-bottom: 20px;
border-radius: 8px;
background-color: var(--input-bg);
color: var(--input-text);
border: 1px solid var(--input-solid);
box-sizing: border-box;
transition: 0.3s;
outline:none;
}
.form_box .form-group .icon2{
position: absolute;
top: 50%;
transform: translateY(-50%); /* perfect center */
color: #999;
font-size: 17px;
margin: -10px 0px 0px 0px;
left: 14px; 
}

.form_box .form-group .toggle-pass {
position: absolute;
top: 50%;
transform: translateY(-50%); /* perfect center */
color: #999;
font-size: 17px;
margin: -10px 0px 0px 0px;
right: 14px;
cursor:crosshair;

}
/* Terms checkbox */
.form_box .terms {
margin-top: 10px;
margin-bottom: 15px;
font-size: 14px;
}
.form_box .terms .checkbox{
width: 16px;
height: 16px;
vertical-align: middle;
margin: -10px 6px 0px 10px;

}
.form_box .terms .checkbox .iabtn{
color:#4da6ff;
}
.form_box .clickbtn{
width: 100%;
padding: 12px;
background: #4da6ff;
color: #000;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
margin-top: 10px;

}
/* Spinner Style */
.form_box .clickbtn .loading {
pointer-events: none;
opacity: 0.5;
}
.form_box .clickbtn .spinner {
width: 10px;
height: 10px;
border: 3px solid #fff;
border-top-color: transparent;
border-radius: 50%;
display: inline-block;
margin-right: 6px;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
















/* BOTTOM LINKS */
.form_box .bottom-links {
margin-top: 20px;
font-size: 14px;
}
.form_box .bottom-links .row-links {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.form_box .bottom-links .row-links .lkbtn {
color: #4da6ff;
text-decoration: none;
}
.form_box .bottom-links .row-links .lkbtn:hover,
.help .lkbtn:hover{
text-decoration: underline;
}
.form_box .bottom-links .help {
text-align: center;
margin-top: 15px;
}
.form_box .bottom-links .help .lkbtn {
color: #4da6ff;
text-decoration: none;
display: block;
}


















/*Register*/
/*Footer*/
.my_footer {
display: flex;
justify-content: space-around;
align-items: center;
position: fixed;
left: 0;
right: 0;
bottom: 0;
height: 60px;
border-radius: 8px 8px 0 0;
padding: 0;
margin: 0;

background: var(--bg-color);
color: var(--text-color);
border-top: 2px solid var(--line);
}
.my_footer .fbx {
text-align: center;
width: 20%;
text-decoration: none;
transition: color 0.3s, opacity 0.3s;
color: var(--fbtn);
}
.my_footer .fbx:hover {
opacity: 0.6;
}
.my_footer .fbx .fi {
font-size: 20px;
display: block;
margin-top: 6px; /* 6px top spacing for icons */
margin-bottom: 5px;
}
.my_footer .fbx .fsub {
font-size: 10px;
font-weight: 900;
opacity: 0.8;
}





/* Footer Main */
.fotlist {
background: var(--bg-color);
color: var(--text-color);
padding: 40px 20px;
font-family: Arial, sans-serif;
}
/* Columns */
.fotlist .col {
flex: 1 1 200px;
min-width: 200px;
}
/* Headings */
.fotlist .col .title {
margin-bottom: 10px;
}
.fotlist .col .txt{
margin: 7px;
font-size: 18px;
}
/* Links */
.fotlist .col .txt .txt-link {
color: #1E90FF;
text-decoration: none;
}
.fotlist .col .subtitle {
margin-bottom: 10px;
}
/* UL Reset */
.fotlist .col .list {
list-style: none;
padding: 0;
margin: 0;
}
.fotlist .col .list .li2 {
padding: 0;
margin: 4px;
}
.fotlist .col .list .li2 .link {
color: #1E90FF;
text-decoration: none;
}
/* Horizontal Line */
.fotlist .hr {
border-color: #333;
margin: 20px 0;
}
/* Bottom Text */
.fotlist .bottom {
text-align: center;
margin: 0;
}

