/* Import the Oswald font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald&family=VT323&display=swap');


/*  No scrolling in the  page   */
html, body {
    overflow: hidden;
  }
/* Define the font families for the whole document */
body {
    font-family: 'VT323', monospace;
    background-color: none; /* Red background color from internet CSS */
}

/* Dark-themed styles with white, gray, and dark gray gradients */
.staticrypt-hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #333;
    background: linear-gradient(to right, #333, #888, #333); /* Gradient background */
}

.staticrypt-page {
    width: 360px;
    padding: 8% 0 0;
    margin: auto;
    box-sizing: border-box;
    background-color: none; /* Path to your background image */
    background-size: cover; /* Cover the entire screen */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-position: center center; /* Center the image horizontally and vertically */
    color: none; /* Dark text color */
}

.staticrypt-form {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: rgb(0, 0, 0); /* Background color from internet CSS */
    padding: 30px 30px 30px 30px;
    max-width: 360px;
    width: 360px;
    margin: 0 auto 50%;
    text-align: center;
    box-shadow: 0 0 20px 0 rgb(255, 255, 255); /* Box shadow color from internet CSS */
    border: 2px solid #ffffff;
}

.staticrypt-form .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-color: rgb(33, 33, 33); /* Change the color to your desired color */
    border-radius: 0%;
    cursor: pointer;
}

.staticrypt-form .close-button::before,
.staticrypt-form .close-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: white; /* Change the color to your desired color */
    transform: translate(-50%, -50%) rotate(45deg);
}

.staticrypt-form .close-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* hide if click x */
.staticrypt-form.hidden {
    display: none;
  }

/* Style the text field */
.staticrypt-form input[type="password"] {
    font-family: 'VT323', monospace;
    display: block;
    font-size: 20px;
    background: rgb(0, 0, 0);
    width: 100%;
    border: 0;
    padding: 10px 10px;
    margin: 15px -10px;
    color: #ffffff; /* Text color */
    position: relative;
}

.staticrypt-form input[type="password"]:focus {
    outline: none;
}

/* fake carret shit */


.staticrypt-form .staticrypt-decrypt-button {
    font-family: 'VT323', monospace;
    cursor: pointer;
    font-size: 20px;
    text-transform: uppercase;
    width: 150px;
    padding: 10px 0;
    margin-top: 10px;
    margin-left: -64%;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: transparent;
    animation: blink-text 1s infinite alternate;
    border: none; /* Remove any borders around the button */
}

@keyframes blink-text {
    0% {
        color: transparent;
    }
    100% {
        color: #7c7c7c;
    }
}


.staticrypt-form .staticrypt-decrypt-button:hover,
.staticrypt-form .staticrypt-decrypt-button:active,
.staticrypt-form .staticrypt-decrypt-button:focus {
    background: rgba(0, 0, 0, 0.7);
}

.staticrypt-html {
    height: 100%;
}
/*background*/
 .staticrypt-body {
    height: 100%;
    margin: 0;
    background-image: url('BG.png'); /* Set the path to your background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #08ded0;
  }
 /* Icons */

 /* .staticrypt-body::before {
    content: "\f1f8"; Replace with the desired Font Awesome icon code for the first icon */
    /* font: var(--fa-font-solid);
    position: absolute;
    top: 50px; /* Adjust the top position as needed */
    /* right: 100px; /* Adjust the right position as needed */
    /* font-size: 50px; /* Adjust the font size as needed */
    /* color: rgb(10, 10, 10); /* Set the desired color for the icon */
  /* }*/
  
 /* .staticrypt-body::after {
    /*content: "\f120"; /* Replace with the desired Font Awesome icon code for the second icon */
   /* font: var(--fa-font-solid); /* Replace with the appropriate Font Awesome font family */
   /* position: absolute;
   /* top: 200px; /* Adjust the top position as needed */
   /* right: 100px; /* Adjust the right position as needed */
  /*  font-size: 40px; /* Adjust the font size as needed */
   /* color: rgb(0, 0, 0); /* Set the desired color for the icon */
   /* border: 5px solid rgb(0, 0, 0); /* Add a border around the icon */
    /*cursor: pointer; /* Add a pointer cursor to indicate it's clickable */
  /*}*/



  
  /* icons end */
  


.staticrypt-content {
    height: 100%;
    margin-bottom: 1em;
    background: none; /* Light background with gray gradient */
    color: #FF69B4;  /* Dark text color */
    border-radius: 8px;
}

.staticrypt-instructions {
    margin-top: -1em;
    margin-bottom: 1em;
}

.staticrypt-title {
    font-size: 1.5em;
    color: #0cd54f;
    font-family: 'VT323', monospace;
}

label.staticrypt-remember {
    display: none;
    align-items: center;
    margin-bottom: 1em;
    color: #000000;
}

.staticrypt-remember input[type="checkbox"] {
    display: none;
    transform: scale(1.5);
    margin-right: 1em;
}

.hidden {
    display: none !important;
}

.staticrypt-spinner-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0);
}

.staticrypt-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0 solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    100% {
        transform: rotate(360deg);
    }
}


.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px; /* Adjust the height of the taskbar as needed */
    background-color: #c0bfbc;
    display: flex;
    align-items: center;
}

.demarer-button {
    width: 80px;
    height: 100%;
    background-color: #8e8e8e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

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

.red,
.green,
.blue,
.yellow {
    width: 15px;
    height: 15px;
    margin: 1px;
}

.red {
    background-color: red;
}

.green {
    background-color: lightgreen;
}

.blue {
    background-color: lightblue;
}

.yellow {
    background-color: yellow;
}

.command-button {
    width: 80px; /* Adjust the width of the custom button as needed */
    height: 100%;
    background-color: black; /* Set the button background color to black */
    color: white; /* Set text color to white */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px; /* Add margin to separate it from the "Start" button */
    font-family: 'VT323', monospace; /* Change the font family */
}


.Horlog {
    position: relative;
    left: -20px; /* Adjust the value as per your preference */
    margin-left: auto; /* Add this line to push the clock to the right */
    padding-left: 10px; /* Add padding to make space for the border */
    border-left: 2px solid rgb(92, 92, 92); /* Add a border on the left */
    box-shadow: -2px 0 0 0 rgba(95, 95, 95, 0.5); /* Add a shadow on the left border */
    box-shadow: -2px 0 0 0 rgba(137, 137, 137, 0.5), -2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a shadow on the left border without any shadow on the right */
    height: inherit; /* Inherit the height from the taskbar */
    line-height: 40px;
}