/*Autors: Ralfs Riters; Pierakstīšanās un reģistrēšanās lapu noformējumu CSS datne; 
Veidots: 2024. gadā, Jaunākā versija*/

/*Fonta iestatīšana*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
/* Iestata sākotnējos fontus visai lapai un visas elementu malas un polsterējumus uz nulli */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/*Lapas galvenais noformējums*/
body {
  margin: 0;
  padding:0;
  background: rgba(0, 0, 0, 0.7) url("../background/background7.jpg");
  background-size: 100% 100%;;
  background-blend-mode: darken;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  overflow: hidden;
} 


/* galvenais konteineris */
.container {
  max-width: 440px;
  margin: 170px auto;
}

/* galvenais ietvars */
.wrapper {
  width: 100%;
  background: #242733;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(17, 16, 16, 0.1);
}

/* ietvara nosaukums */
.wrapper .title {
  height: 90px;
  background: #f7a600;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ietvara ievadforma */
.wrapper form {
  padding: 30px 25px 25px 25px;
}

/* ievadformas rinda */
.wrapper form .row {
  height: 45px;
  margin-bottom: 15px;
  position: relative;
}

/* ievadfromas ievadlauks */
.wrapper form .row input {
  height: 50px;
  width: 100%;
  outline: none;
  padding-left: 60px;
  border-radius: 5px;
  border: 1px solid #f7a600;
  font-size: 18px;
}

/* vietturis ievadlaukā */
form .row input::placeholder {
  color: #3c3b42;
}

/* ikonas noformejums */
.wrapper form .row i {
  position: absolute;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 20px;
  background: #f7a600;
  border: 1px solid #f7a600;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/* Paroles atjaunošana*/
.wrapper form .pass {
  margin: -8px 0 20px 0;
}

/* Paroles atjaunošanas saites stils */
.wrapper form .pass a {
  color: #ffffff;
  font-size: 17px;
  text-decoration: none;
}

.wrapper form .pass a:hover {
  text-decoration: underline;
}



/* ievadformas pogas stils */
.wrapper form .row-button input {
  width: 100%;
  height: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: #f7a600;
  cursor: pointer;
  border:none;
  border-radius: 5px;
 margin-top: 10px;
  margin-bottom: 15px;
}

form .row-button input:hover {
  background: #f59402;
}

/* poga uz pierasktīšanos */
.wrapper form .signup-link {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  
}

.wrapper form .signup-link a {
  color: #f7a600;
  text-decoration: none;
  
}

form .signup-link a:hover {
  text-decoration: underline;
  color: #f59402;
}


/*Paroles prasību konteiners*/
#password-requirements {
  color: red;
  padding: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  border: 1px solid red;
  border-radius: 5px;
  background-color: #f8d7da;
}

/* Paroles prasību saraksta stils*/
#password-requirements ul {
  list-style-type: none;
  padding-left: 0;
  font-size: 18px;
}

/* Paroles prasību saraksta vienumu atstarpes */
#password-requirements li {
  margin: 5px 0;
  font-size: 18px;
}
 /* kājenes noformējums*/
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  color: #dedede;
  margin-bottom: 20px;
  margin-top: 20px;
}