/*
    Title: Custom Styles
    Author: QBIT
    Date: 03/06/2025
*/

/* Global styles */
body {
    background-color: #0c0914;
    color: #fff;
    font-size: 1.0em; 
    line-height: 1.6em;
    font-family: 'Quicksand', sans-serif;
}

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

a {
    color: #6955af;
    text-decoration: none;
}

p {
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

ol {
  list-style-position: inside;
  margin-bottom: 20px;
}

/* Main styles */
.main {
    text-align: center;
}

.notice {
    text-align: center;
    margin-top: 20px;
}

/* Header styles */
.logo {
    width: 300px;
    height: 45px;
    display: block;
    background: url('../../../../uploads/svg/logo.svg') left top / 300px no-repeat;
    text-indent: -9999px;
    display: block;
    margin: 50px auto;
}

/* Form styles */
form {
    background-color: #2b2637;
    border-radius: 10px;
    padding: 20px;
}

input[type="text"],select,textarea,input[type="number"],input[type="password"],input[type="email"] {
    width: 100%;
    border: solid 2px #514c60;
    background-color: #3b364a;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.0em;
    font-style: normal;
    color: #fff;
    margin-bottom: 10px;
    padding: 15px;
}

select {
    margin: 0;
}

textarea {
    height: 150px;
}

input[type="submit"] {
    border-radius: 10px;
    cursor: pointer;
    padding: 20px;
}

::placeholder {
    color: #514c60;
}

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

/* Button styles */
.btn {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8em;
    border: solid 1px #6955af;
    background-color: #6955af;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.5s ease-in-out;
    padding: 10px 15px 10px 15px;
}

.error {
    background-color: red;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Footer styles */
footer {
    padding: 10px;
}

.copyright {
    text-align: center;
    margin: 0;
}

/* Navigation styles */
.nav {
    position: fixed;
    top: 10px;
    right: 20px;
}

.nav a {
    color: #fff;
}

/* Check box styles */
/* Customize the label (the container) */
.container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 10px 0 20px 0;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #3b364a;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #3b364a;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.terms {
  text-align: left;
}

/* Media queries */
@media (max-width: 64em) {

    /* Custom styles */

}
