
@import url("mystic.css");

body {
    width: 100dvw;
    height: 100dvh;
    background-color: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  
  }
  
  header {
    background: none !important;
  }
  
  .front_title {
    margin: 20px 10px auto auto;
    font-size: 80px;
    background: none !important;
    color: white;
    -webkit-text-stroke: 4px black;
    padding-left: 100px;
    animation: slide-in 1s ease-in-out 0.5s forwards;
  }
  
  @keyframes slide-in {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  
     /* MAIN */
  
  
   #logodiv {
     display: flex;
     justify-content: center;
     align-items: center;
     background: none;
     margin-left:-15%;
    }
  
    .front_logo {
      margin: auto auto auto 170px;
      height: 512px;
      width: 512px;
      background: none;
      margin-left: 20%;
    }
  
     #log_section {
      margin-left: 40%;
     display: flex;
     flex-direction: column;
     align-items: center;
     background: none;
      justify-content: center;
      align-items: center;
      width: 50%;
      margin-top: -25%;
   }
  
     .front_slogan {
       color: white;
       background: none !important;
       position: inherit;
       display: inline-block;
       margin-left: 5%;
       font-size: 75px;
       animation: slide-in 1.5s ease-in-out 1s forwards;
     }
  
    .front_signup_button {
        background: none;
        padding: inherit;
        height: 50px;
        width: 200px;
        font-size: 40px;
        border-style: solid;
        border-radius: 20px;
        border-color: black;
        text-align: center;
        text-decoration: none;
        margin-top: 5%;
    }
     .front_signup_button:hover {
          background-color: white;
          padding: inherit;
          height: 50px;
          width: 200px;
          font-size: 40px;
          border-style: solid;
          border-radius: 20px;
          border-color: black;
        }
         .front_login_button {
           background: none;
           padding: inherit;
           height: 50px;
           width: 200px;
           font-size: 40px;
           border-style: solid;
           border-radius: 20px;
           border-color: black;
           text-align: center;
           text-decoration: none;
           margin-top: 10%;
         }
         .front_login_button:hover {
              background-color: white;
              padding: inherit;
              height: 50px;
              width: 200px;
              font-size: 40px;
              border-style: solid;
              border-radius: 20px;
              border-color: black;
            }
            .signup_space {
              position: absolute;
              margin: auto auto auto 450px;
              border: 2px;
              border-color: inherit;
              border-style: groove;
              height: 600px;
              width: 500px;
              background: none;
            }
            .signup_submit {
              height: 50px;
              width: 150px;
              position: absolute;
              background: none;
              padding: inherit;
              border-radius: 20px;
              margin: 500px auto auto  180px;
              font-size: 30px;
            }
            .signup_submit:hover {
              height: 50px;
              width: 150px;
              position: absolute;
              background-color: white;
              padding: inherit;
              border-radius: 20px;
              margin: 500px auto auto  180px;
              font-size: 30px;
            }
  
  
  
  
  
  /* FOOTER */
  
  .footer {
    background: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100dvw;
    color: white;
    margin-top: 8%; /* Increase the margin-top to create more space */
    gap: 5%;
  }
  
  #footerlinks {
    background: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: -30%;
  }
  
  footer a {
    text-decoration: none;
    color: white;
    padding-right: 10px;
    background: none;
  }
  
  footer a:hover {
    color: black;
    -webkit-text-stroke: white 0.1px;
    -webkit-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
  }
  
  #trademark {
    color: white;
    background: none;
    font-size: 30px;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-opacity: 1;
    font-style: italic;
    margin-left: -1%;
  }
  
  
  /* Apply opacity to specific elements inside the main content initially */
  #logodiv, #log_section {
    opacity: 0;
    animation: fade-in 1.5s ease-in-out 1.5s forwards;
  }
  
  /* Slide-in effect for the title */
  .front_title {
    opacity: 0;
    animation: slide-in 1s ease-in-out 0.5s forwards;
  }
  
  /* Slide-in effect for the slogan (slower) */
  .front_slogan {
    opacity: 0;
    animation: slide-in 1.5s ease-in-out 1s forwards;
  }
  
  /* Initially hide the "Back to Election" button */
  #back-to-election {
    display: none;
  }
  
  /* Other styles (you can adjust as needed) */
  /* ... */
  
  
  
  
  
  /* Add this CSS for the signup form */
  #signup-form {
      margin-left: 40%;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: none;
      justify-content: center;
      align-items: center;
      width: 50%;
      margin-top: -5%;
      padding: 30px; /* Add padding for better spacing */
    }
    
    /* Style the form elements */
    #signup-form h1 {
      font-size: 24px;
      margin-bottom: 10%;
    }
    
    #signup-form input[type="text"],
    #signup-form input[type="password"], 
    #signup-form input[type="email"],
    select option,
    select,
    textarea
    {
      width: 100%;
      padding: 10px;
      margin-bottom: 7%;
      border: 1px solid #ccc;
      border-radius: 5px;
      outline: none;
      resize: none;
      color: white !important;
      background: none;
      font-size: 25px;
    }

#signup-form input[type="text"]:focus,
#signup-form input[type="password"]:focus,
#signup-form input[type="email"]:focus,
#signup-form select option:focus,
#signup-form select:focus,
#signup-form textarea:focus {
  transform: scale(1.05); /* Slightly scale up the input elements on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow on hover */
  border: 3px solid black;
}
  
    select option {
      color: black !important;
    }
  
    textarea {
      height: 100px;
    }
    
    #signup-form button {
      background-color: #007BFF;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      background-color: none;
      background: none;
    }
    
    #signup-form button:hover {
      background-color: black;
    }
    
    #signup-form p {
      margin-top: 10%;
      background: none !important;
      color: white;
    }
  
      
    #signup-form a {
      margin-top: 10%;
      background: none !important;
      text-decoration: underline;
      color: white;
      font-style: italic;
      font-size: larger;
    }
  
    ::placeholder {
      color: white;
    }

    /* Main Section Form Effect */
#signup-form {
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

#signup-form:hover {
  opacity: 1; /* Slightly reduce opacity on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow on hover */
}



/* Add this rule to lower the opacity of the body when hovering over the form */
#signup-form:hover ~ body {
  opacity: 0.6 !important; /* Reduce the opacity of the body on form hover */
}

/* Style the form elements */
#signup-form input[type="text"],
#signup-form input[type="password"],
#signup-form input[type="email"],
select option,
select,
textarea {
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

#signup-form input[type="text"]:hover,
#signup-form input[type="password"]:hover,
#signup-form input[type="email"]:hover,
#signup-form select option:hover,
#signup-form select:hover,
#signup-form textarea:hover {
  transform: scale(1.05); /* Slightly scale up the input elements on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow on hover */
}

#signup-form button {
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#signup-form button:hover {
  background-color: black; /* Change background color on hover */
  transform: scale(1.05); /* Scale up the button on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a box shadow on hover */
}

#signup-form p {
  transition: color 0.3s ease;
}

#signup-form p:hover {
  color: black; /* Change text color on hover */
}

#signup-form a {
  transition: text-decoration 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

#signup-form a:hover {
  text-decoration: none; /* Remove underline on hover */
  color: black; /* Change link color on hover */
  font-size: larger; /* Slightly increase font size on hover */
}

/* Main Section Text Effect */
#main-text {
  transition: transform 0.3s ease, opacity 0.3s ease, text-shadow 0.3s ease;
}

#main-text:hover {
  transform: scale(1.02); /* Slightly scale up the text on hover */
  opacity: 0.9; /* Slightly reduce opacity on hover */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Add a subtle text shadow on hover */
}





     /* MEDIA QUERIES */

 
 /* Media Query for Mobile Screens */
 @media screen and (max-width: 767px)   {
   body {
     overflow-y: auto !important;
    }
    #log_section {
     margin-top: -20%;
     width: 100%;
     margin-left: -20%;
    }
    #signup-form input[type="text"], #signup-form input[type="password"], #signup-form input[type="email"], select option, select, textarea {
     width: 80dvw !important;
     padding: 10px;
     margin-bottom: 7%;
     border: 1px solid #ccc;
     border-radius: 5px;
     outline: none;
     resize: none;
     color: white !important;
     background: none !important;
   }
   .front_slogan {
     color: white;
     background: none !important;
     position: inherit;
     display: inline-block;
     margin-left: 25dvw !important;
     font-size: 75px;
     animation: slide-in 1.5s ease-in-out 1s forwards;
     
   }
   textarea {
     height: 300px;
 }
 select option {
   color: black !important;
 }
 #signup-form p {
   margin-top: 10%;
   background: none !important;
   color: white;
   font-size: 3dvh;
   text-wrap: wrap;
   width: 80dvw;
 }
}
 
     /* Media Query for Tablet Screens */
@media screen and (min-width: 768px) and (max-width: 1023px)  {
  body {
    overflow-y: auto !important;
   }
   #log_section {
    margin-top: -20%;
    width: 100%;
    margin-left: -20%;
   }
   #signup-form input[type="text"], #signup-form input[type="password"], #signup-form input[type="email"], select option, select, textarea {
    width: 80dvw !important;
    padding: 10px;
    margin-bottom: 7%;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    resize: none;
    color: white !important;
    background: none !important;
  }
  .front_slogan {
    color: white;
    background: none !important;
    position: inherit;
    display: inline-block;
    margin-left: 70dvw !important;
    font-size: 75px;
    animation: slide-in 1.5s ease-in-out 1s forwards;
    
  }
  textarea {
    height: 300px;
}
select option {
  color: black !important;
}
#signup-form p {
  margin-top: 10%;
  background: none !important;
  color: white;
  font-size: 3dvh;
  text-wrap: wrap;
  width: 80dvw;
}
.front_title {
  padding-left: 35dvw !important;
}
 }
  /* Add more styles for mobile screens as needed */
   

  @media only screen and (min-width: 1024px) and (max-width: 1440px) {
    body {
      overflow-y: hidden !important;
      margin-top: 4dvh;
     }
     body * {
      margin-top: 3dvh;
     }
     #log_section {
      margin-top: -30%;
      width: 30dvw;
      margin-left: 50%;
      display: flex !important;
      flex-direction: row !important;
      gap: 5% !important;
      flex-wrap: wrap !important;
      justify-content: space-evenly !important;
      align-items: center !important;
      
     }
     #signup-form input[type="text"], #signup-form input[type="password"], #signup-form input[type="email"], select option, select, textarea {
      width: 25dvw !important;
      padding: 10px;
      margin-bottom: 20%;
      border: 1px solid #ccc;
      border-radius: 5px;
      outline: none;
      resize: none;
      color: white !important;
      background: none !important;
      display: flex !important;
    }
    .front_slogan {
      color: white;
      background: none !important;
      position: inherit;
      display: inline-block;
      margin-left: 5dvw !important;
      font-size: 30px;
      animation: slide-in 1.5s ease-in-out 1s forwards;
      
    }
    textarea {
      height: 100px;
      width: 500px !important;
  }
  select option {
    color: black !important;
  }
  #signup-form p {
    margin-top: 10%;
    background: none !important;
    color: white;
    font-size: 3dvh;
    text-wrap: wrap;
    width: 30dvw;
  }
  .footer {
    background: none;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    align-content: center !important;
    width: 100dvw;
    color: white;
    margin-top: 0% !important; /* Increase the margin-top to create more space */
    gap: 5% !important;
    flex-wrap: wrap !important;
    margin-left: 7dvw !important;
  }
  .footer a {
    text-decoration: none;
    color: white;
    background: none;
    width: 15dvw !important;
    font-size: 15px;
    margin-right: -3%;
  }
  #footerlinks {
    margin-left: -15%;
  }
  
  #trademark {
    margin-left: -10% !important;
    margin-top: 3%;
    font-size: 25px;
  }
  }

  
  

  /* Media Query for Full HD (1920x1080) Desktops */
@media screen and (min-width: 1920px) and (min-height: 1080px) {
  /* Your styles for Full HD desktops go here */
}

/* Media Query for HD (1366x768) Desktops */
@media screen and (min-width: 1366px) and (min-height: 768px) {
  /* Your styles for HD desktops go here */
}

/* Media Query for UltraWide (2560x1080) Desktops */
@media screen and (min-width: 2560px) and (min-height: 1080px) {
  /* Your styles for UltraWide desktops go here */
}

/* Media Query for 4K (3840x2160) Desktops */
@media screen and (min-width: 3840px) and (min-height: 2160px) {
  /* Your styles for 4K desktops go here */
}

/* Media Query for 5K (5120x2880) Desktops */
@media screen and (min-width: 5120px) and (min-height: 2880px) {
  /* Your styles for 5K desktops go here */
}

/* Media Query for Common 16:9 Aspect Ratio Desktops */
@media screen and (min-aspect-ratio: 16/9) {
  /* Your styles for 16:9 aspect ratio desktops go here */
}

/* Media Query for Common 16:10 Aspect Ratio Desktops */
@media screen and (min-aspect-ratio: 16/10) {
  /* Your styles for 16:10 aspect ratio desktops go here */
}


