/*
--------------------------------------------------------------------------------------------------
THESE STYLES ARE COPYRIGHTED (c) 2025 BY NOTHINGBUTTYLER. DO NOT USE TO PUT THIS ON YOUR WEBSITE.
--------------------------------------------------------------------------------------------------
*/

/* START STYLE.CSS */



/* MAIN STYLES FOR HOMEPAGE */



body { 
  margin: 0; 
  font-family: Arial, Helvetica, sans-serif;
  background: rgb(2,0,36);
  background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 50%, rgba(0,255,255,1) 100%);


}

.header { 

  overflow: hidden; 

 /* background-color: #f1f1f1; */

  padding: 20px 10px;

}

.header a { 

  float: left; 

  color: white; 

  text-align: center; 

  padding: 12px; 

  text-decoration: none; 

  font-size: 18px; 

  line-height: 25px; 

  border-radius: 4px;

}

.header a.logo {

  font-size: 25px; 

  font-weight: bold;

}

.header a:hover { 

  background-color: #dddddd; 

  color: white;

}

.header a.active { 

  background-color: dodgerblue; 

  color: white;

}

.header-right { 

  float: right;

}

@media screen and (max-width: 500px) { 

  .header a {

    float: none;

    display: block; 

    text-align: left;

  } 

  .header-right { 

    float: none; 

  }}
a {
  text-decoration: ;
  color: white;
/* END OF MAIN STYLING FOR HOMEPAGE */
  
  
/* LOGIN AREA  - INPUT PASSWORD STYLING */
  
  
 /* This is the number password styling for the code on the login page. (index.html)*/

          input[type="password"] { 

            width: 100px;

            padding: 10px;

            font-size: 16px; 

            border: 1px solid #ccc;

            border-radius: 4px;

          }

/* END OF LOGIN AREA - INPUT PASSWORD STYLING */
  
  
  
  

  
 /* ... Around Line 90 in your style.css ... */

  /* TEXT INPUT STYLING (The original 'input' selector) */
  input {
      box-shadow: inset #abacaf 0 0 0 2px;
      border: 0;
      background: rgba(0, 0, 0, 0);
      appearance: none;
      width: 100%;
      position: relative;
      border-radius: 3px;
      padding: 9px 12px;
      line-height: 1.4;
      color: rgb(0, 0, 0); /* This should be white for your background */
      font-size: 16px;
      font-weight: 400;
      height: 40px;
      transition: all .2s ease;
  }
  input:hover{
      box-shadow: 0 0 0 0 #fff inset, #1de9b6 0 0 0 2px;
  }
  input:focus{
      background: #fff;
      outline: 0;
      box-shadow: 0 0 0 0 #fff inset, #1de9b6 0 0 0 3px;
  }
  
/* DISCARD CHANGES TEST (Delete this entire block) */
/* #discardChangesButton { ... } */
/* #discardChangesButton { ... } */
             
             
/* BUTTON 29 (Ensure this is correctly placed outside previous blocks) */
.button-29 {
   /* ---------------------------------------------------- */
/* NEW LOCATION FOR button-29 CODE (Must be outside { }) */
/* ---------------------------------------------------- */             
             
             
/* BUTTON  29 */

.button-29 {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
  border: 0;
  border-radius: 6px;
  box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono",monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s,transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow,transform;
  font-size: 18px;
}

.button-29:focus {
  box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}

.button-29:hover {
  box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-29:active {
  box-shadow: #3c4fe0 0 3px 7px inset;
  transform: translateY(2px);
}
             
             
/* TEXT INPUT (The .nbttextbox selector) */
.nbttextbox  {
    border: 3px solid #000;
    border-radius: 5px;
    height: 50px;
    line-height: normal;
    color: #282828;
    display: block;
    width: 100%;
    box-sizing: border-box;
    user-select: auto;
    font-size: 16px;
    padding: 0 6px;
    padding-left: 12px;
}
.nbttextbox:focus{
    border: 3px solid #5551ff;
}

  /* END OF TEXT INPUT STYLING */
             
                             
  /* END OF STYLE.CSS */