@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap');

@import url("https://fonts.googleapis.com/css?family=Lato");

* {
   /* -webkit-box-sizing: border-box; */
    box-sizing: border-box;
    font-size: 15px;
    line-height:25px;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Roboto Mono', monospace;
}

a {
    text-decoration: none;
    color: whitesmoke;
    transition: color 1.25s; 
}
a:hover {
    color: cyan;
}


select {
    margin-bottom: 20px;
    color:#eeeeee;
    border: 0;
    outline: none;
    padding: 0 8px;
    width: 478px;
    height: 40px;
    background-color: #0D1117;
    font-size: 13px;
}

body, html {
    
    
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    
}

.error-message {
    background-color: black;
    color: white; 
    position: fixed; /* float above everything else */
    top: 50%; /* center vertically */
    left: 50%; /* center horizontally */
    transform: translate(-50%, -50%); /* ensure it's truly centered */
    width: 80%; /* 80% of the viewport */
    max-width: 600px; /* max width */
    padding: 20px;
    box-sizing: border-box; /* padding in width and height */
    z-index: 9999; /* ensure it's above everything else */
    text-align: center; 
}



.darkening-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}

.upper-right {
    font-size: 12px;
    z-index: 10;
}

.upper-right a {
    font-size: 12px;
}

.video-container {
    position: relative;
    background:black;
    width: 100%;
    height: 100vh; /* taking full viewport height */
    background-image: url('https://register.syndx.com/assets/img/home-img-syndx-darkblue-02.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    filter: brightness(0.75);      
    box-shadow: 
        0 0 5px  #000000,  
        0 0 10px #000000,
        0 0 15px #000000,
        0 0 25px #000000,
        0 0 35px #000000,
        0 0 55px #000000,
        0 0 75px #000000;
}

.video-iframe {
    
    max-width: 90vw; /* limiting video width */
    max-height: 80vh; /* limiting video height */
    width: 100%; /* full width of the container */
    height: 100%; /* full height of the container */
    border: 1px solid #1e242b; /* white border around the video */
    border-radius: 10px; /* rounded corners */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(0, 0, 0, 0.6),
                0 0 100px rgba(0, 0, 0, 0.6),
                0 0 200px rgba(0, 0, 0, 0.6),
                0 0 400px rgba(0, 0, 0, 0.6),
                0 0 800px rgba(0, 0, 0, 0.6); 
    filter: brightness(1.33);
    z-index: 3;
}

.video-js {
max-width: 90vw; /* limiting video width */
    max-height: 80vh; /* limiting video height */
    width: 100%; /* full width of the container */
    height: 100%; /* full height of the container */
    border: 1px solid #1e242b; /* white border around the video */
    border-radius: 10px; /* rounded corners */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(0, 0, 0, 0.6),
                0 0 100px rgba(0, 0, 0, 0.6),
                0 0 200px rgba(0, 0, 0, 0.6),
                0 0 400px rgba(0, 0, 0, 0.6),
                0 0 800px rgba(0, 0, 0, 0.6); 
    filter: brightness(1.33);
    z-index: 3;
}

.upper-right {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 10px; /* space between the text and the button */
    z-index: 4;
}

.logout-button {
    background-color: darkred;
    color: white;
    padding: 3px 13px;
    border: none;
    border-radius: 5px;
    /*background-color: rgba(255, 255, 255, 0.8);  semi-transparent white background */
    cursor: pointer;
    display: flex;
    align-items: center;  /* center align the text and the icon inside the button */
    gap: 5px; /* space between the icon and the button text */
    opacity: 0.8;
    z-index: 5;
}

.logout-button:hover {
    background-color: red;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.fuellogin {
    width: 80vw;
    height: 80vh;
    background-color: rgba(34, 50, 66, 0.01);  /* here we use rgba for background transparency */
    -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    margin: 60px;
    border-radius: 10px;
    display: flex;  
    flex-direction: column;  /* stack content vertically */
    align-items: center;  /* horizontally center */
    justify-content: center;  /* vertically center */
    gap: 20px;  /* space between elements */
}

.fuel-button {
    display: flex;
    align-items: center;  
    gap: 10px; 
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #262626; /* #223242; no transparency */
    color: white;  

    transition: box-shadow 0.01s ease-in-out;
}

.thetapass-button {
    display: flex;
    align-items: center;  
    gap: 10px; 
    padding: 10px;
    padding-right: 25px;
  /*  border: none;*/
    border-radius: 5px;
    cursor: pointer;
    background: linear-gradient(to right, #325288, #0f8b8d);  /* from dark neon blue to dark neon green */
    color: white; 
 
}
/*
.thetapass-button, .metamask-button {

    border: 2px solid transparent;
}*/


.thetapass-button, .metamask-button {

    border: 2px solid rgba(34, 50, 66, 0.75);
}


.logout-button {

    border: 1px solid transparent;
}

.thetapass-button:hover, .metamask-button:hover {

    opacity: 1;
    border: 2px solid white; /* white border on hover */
    box-shadow: none; 
    filter: brightness(1);
}

.logout-button:hover {

    opacity: 1;
    border: 1px solid white;
    box-shadow: none; 
    filter: brightness(1);
}

.metamask-button {
    display: flex;
    align-items: center;  
    padding: 10px;
    padding-right: 25px;
    border-radius: 5px;
    cursor: pointer;
    background: linear-gradient(to right, #8B0000, #D35400);
    color: white;  
}

.logo { 
    width: 300px; 
}

.button-container {
    display: flex;
    flex-direction: row;  
    gap: 20px;  
}

.fuel-button img {
    width: 24px;  
    height: 24px;  
}

.description-text {
    color: #ffffff; 
    text-align: center;  
    max-width: 70%; 
    border-top:2px solid #262628;
}

.fuelform {
    width: 80vw;
    height: 80vh;
    background-color: #223242;
    opacity: 0.75;
    -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    margin: 60px;
    border-radius: 10px;
    justify-content: flex-start;
}

.fuelform > :last-child {
    bottom:-70px !important;
    margin-left:-20px;
}

.login-fields {
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    border-left: 2px solid #404d5a;
    padding-left: 100px;
    align-items: center;
}

.login-fields > div {
}

.login .links, .links {
    font-family: 'Roboto Mono', monospace;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 15px;

}

.login .links a, .links a {
    font-family: 'Roboto Mono', monospace;
    color:  #112131; /*rgb(32, 164, 200); */
    text-decoration: none;
    /*display: -webkit-inline-box;*/
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 10px 10px 10px;
    font-weight: bold;
    border-radius: 10px;
}

.login .links a:hover, .links a:hover {

    color: #FFFFFF; /* rgb(22, 154, 200);*/
    box-shadow: 0 0 2px 0 rgba(42, 184, 230, 0.5);
}

.login .links a.active, .links a.active {
    border-bottom: 3px solid #0D1117;
    color: #dddddd;
}

.login form, form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 30px;
    border-radius: 10px;
}

.login form label, form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 0;
    height: 0;
    background-color: #112131;
    color: #334364;
}

.login form label { /* dont use, so dont need to show*/
    display:none;
}

.login form input[type="password"], .login form input[type="text"], .login form input[type="email"] {
    width: 100%;
    height: 50px;
    border:0;
    margin:0 0 20px 0;
    background:transparent;
    border:2px solid #404d5a;
    padding: 0 15px;
    color: #fff;
}

.login ::placeholder {
    color:#404d5a;
}

.login form input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color:  #1b4c68;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    font-size:13px;
    font-weight:300;
    letter-spacing:1px;
}

.login form input[type="submit"]:hover {
    background-color:  #fff; 
    color:#11689e;
}

.navtop {
    height: 60px;
    width: 100%;
    border: 0;
}

.navtop div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 1000px;
    height: 100%;
}

.navtop div a {
    display:block;
}

.navtop div a {
    padding: 5px 30px;
    text-decoration: none;
    color:#878990; /*#767879; /* #656768; */
}

.navtop div a span {
    font-size:13px;
}

.navtop div a i {
    padding: 2px 15px 0 0;
    display:inline-block;
    max-width:31px;
}

.navtop a:hover {

    color: #20afd7; /*rgb(62, 204, 250);*/
}

body.loggedin {
}


body.not-loggedin {
    background-image: url('https://register.syndx.com/assets/img/home-img-syndx-darkblue-02.jpg');
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center center; 
    
    display:flex;
    justify-content: center;
    align-items: center;
    height:90vh;
}    


.content {
    max-width: 1000px;
    padding-left:30px;
    padding-top:25px;
}

.content h2 {
    margin: 0;
    padding-bottom: 50px;
    font-size: 28px;
    font-weight:300;
    color:#eee; /*#fff*/
   /* color: #20afd7;*/

}

.content h2::after{
    content:"";
    margin-top:25px;
    display:block;
    position:absolute;
    height:1px;
    border-bottom: 2px solid #262628;
    width:calc(100% - 240px);
    left:240px;
}


.content h3 {
    padding-top: 25px;
    padding-bottom: 5px;
    margin: 0 0 15px;
    font-size: 14px;
    color: #eee; /*#fff*/ /*#fe5413;xxx*/
    letter-spacing:1px;
}

.content > p, .content > div {
    color: #eeeeee;
    margin: 15px 0;
    padding: 30px;
    border:0;
    background-color: #323232;
}
/*
.content > p, .content > div:hover {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    color: #eeeeee;
    margin: 15px 0;
    padding: 15px;
    background-color: #323232;
}*/

.content > p table td, .content > div table td {
    padding: 5px;
}

.content > p table td:first-child, .content > div table td:first-child {
    font-weight: 300;
    font-size: 11px;
    padding-right: 15px;
    opacity: 0.5;
    letter-spacing: 1px;
}

.content > p table td a, .content > div table td a {
    color: #dddddd;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    opacity: 1;
    text-decoration: none;
    margin: 0;
    padding: 0;
}


.content > div p {
    padding: 5px;
    margin: 0 0 10px 0;
}


.content > p  a, .content > div a {
    color: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    opacity: 1;
    text-decoration: none;
    margin: 5px;
    padding: 5px;
}
/*
.content > p  a:hover, .content > div a:hover {
    color: #eeeeee; 

    opacity: 0.9;
    text-decoration: none;
}*/

.node-container {
    display: flex;
    flex-direction: column;
    background-color: #F5F5F5;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #888888;
}

.node-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.node-header h2 {
    margin: 0;
}

.node-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.node-content table {
    margin-left: 20px;
}

.node-content table td {
    padding: 5px;
}

.node-content table td:first-child {
    font-weight: bold;
}

.node-content table td:last-child {
    text-align: right;
}

.node-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.node-footer a {
    color: #555555;
    text-decoration: none;
    font-weight: bold;
}

.node-footer a:hover {
    text-decoration: underline;
}

/* RELAYERING CSS */
/* :FLAT */

h1 {
    opacity: 1;
    color: white;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-image: url('https://register.syndx.com/assets/img/home-img-syndx-darkblue-02.jpg');
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center center; 
    background-attachment: fixed;
    
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    
}

body main {
    display:flex;
    justify-content:flex-start;
}

.navtop div {
    display:flex;
    width:inherit;
    flex-direction:column;
}

.logo {
   /* border-bottom:2px solid #262628;*/
    min-height:75px;
    display:flex;
    align-items:center;
}

.login h1, h1 {
    margin:10px 0 10px 20px;
    border-right:2px solid #262628;
    width:220px;
    display:block;
    position:relative;
}

/* Did this a bit dirty, but didnt want to add an element for this */
.loggedin h1::after {
    content: "product of FuelFoundry";
    font-size: 10px;
    position: absolute;
    left: 250px;
    top: 25px;
    min-width: 300px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:#767879;
}

.logo img {
    display:block;
    min-height:60px;
}
