/* =========================
   Meet Neo. Let's follow the white rabbit :)
   Author: Qbit
   Build Date: 27/03/2026
   Version: 1.0.0

   File path: /install/uploads/
========================= */

/* =========================
   Import fonts 
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Quicksand&display=swap');

/* =========================
   Root styles 
========================= */

:root {
   --purple: #7c3aed;
   --violet: #a855f7;
   --pink: #ec4899;
}

/* =========================
   Global styles 
========================= */

* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
    font-size: 100%;
}

body {
   font: 1.0em 'Quicksand', sans-serif;
   color: #fff;
   background: linear-gradient(135deg, var(--purple) 0%, var(--violet) 45%, var(--pink) 100%);
   background-attachment: fixed;
}

h1,h2,h3,h4,h5,h6 {
   font: 700 1.6em 'Poppins', sans-serif;
   color: #fff;
   margin-bottom: 20px;
}

h1 {
   font-size: 2.4em;
}

h6 {
   color: #333;
}

p {
   margin-bottom: 20px;
}

ul {
   list-style: none;
   margin-bottom: 20px;
}

a {
   color: #fff;
}

/* =========================
   Header styles 
========================= */

.logo {
   width: 80px;
   height: 60px;
   display: block;
   background: url('/install/uploads/svg/logo.svg') no-repeat left top / contain;
   text-indent: 1000px;
}

/* =========================
   Error styles 
========================= */

.error {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   font-family: 'Poppins', sans-serif; 
   text-align: center;
   color: #fff;
   background-color: red;
}

/* =========================
   Form styles 
========================= */

form {
   background-color: #fff;
   border-radius: 5px;
   padding: 20px;
}

input[type="text"], input[type="password"], input[type="email"] {
   width: 100%;
   border: 1px solid #f0f0f0;
   border-radius: 3px;
   background-color: #f0f0f0;
   font: 1.0em 'Poppins', sans-serif;
   color: #333;
   appearance: none;
   margin-bottom: 15px;
   padding: 15px;
}

input[type="submit"] {
   border: 1px solid #ec4899;
   border-radius: 3px;
   background-color: #ec4899;
   font: 1.0em 'Poppins', sans-serif;
   transition: background-color 0.5s ease, transform 0.5s ease-in-out;
   color: #fff;
   cursor: pointer;
   margin-top: 10px;
   padding: 8px 10px;
}

input[type="submit"]:hover {
   border: solid 1px #333;
   background-color: #333;
}

.required {
   color: red;
   font-style: normal;
}

label {
   font-family: 'Poppins', sans-serif;
   color: #333;
}

::placeholder {
   color: #ccc;
}

/* =========================
   Password styles 
========================= */

.password {
  position: relative;
}

.password button {
  position: absolute;
  right: 10px;
  top: 13px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
}

#passwordLength {
   font-style: normal;
   color: red;
}

/* =========================
   Button styles 
========================= */

.btn {
   border: 1px solid #ec4899;
   border-radius: 3px;
   background-color: #ec4899;
   font: 1.0em 'Poppins', sans-serif;
   transition: background-color 0.5s ease, transform 0.5s ease-in-out;
   text-decoration: none;
   display: inline-block;
   color: #fff;
   cursor: pointer;
   padding: 8px 10px;
}

.btn:hover {
   border: solid 1px #333;
   background-color: #333;   
}

/* =========================
   Responsive styles 
========================= */

@media (max-width: 768px) {



}