/* Bordered form */

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

:root {
    --primary-color: #A29887;
    --secondary-color: #2D3250;
    --tertiary-color: white;
    --quaternary-color: #4E4E4E;
}

body{
    font-family: "Cinzel", serif;
    min-width: 800px;
    background-color: #1E1E1E;
}

.center{
    margin: 0 auto;
    max-width: 800px;
    padding-top: 140px;
}


.head{
    display: inline-flex;
    text-align: center;
    height: 100px;
    color: var(--primary-color);
    position: relative;
    left: 204px;
    top: 50px;
}

.head .container p{
    line-height: 0;
    font-size: 42px;
    font-weight: 600;
}

form {
    border: 4px solid var(--primary-color);
    background-color: var(--secondary-color);
    display: block;
    border-radius: 10px;
 }

b{
    color: var(--primary-color);
    font-size: 20px;
}

  /* Full-width inputs */
  input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
    background-color: white;
  }
  
  /* Set a style for all buttons */
  button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: "Cinzel", sans serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    padding: 16px 0px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 150px;
    position: relative;
    left: 300px;
  }
  
  /* Add a hover effect for buttons */
  button:hover {
    opacity: 0.8;
    color: white;
  }
  
  /* Extra style for the cancel button */

.btn {
    width: auto;
    padding: 10px 18px;
    background-color: var(--primary-color);
    border-radius: 6px;
    color: var(--secondary-color);
    font-family: "Cinzel", sans serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.btn:hover{
    color: var(--tertiary-color);
    opacity: 80%;
}

.container2{
    padding-left: 20px;
    color: var(--primary-color);
    font-family: "Cinzel", sans serif;
    font-weight: 600;
    font-size: 18px;
    height: 32px;
}



  
  /* Add padding to containers */
  .container {
    padding: 20px;
  }
  
  /* The "Forgot password" text */

  span.psw {
    float: right;
    padding-top: 16px;
}

span a{
    color: var(--tertiary-color);
    font-weight: 600;
    font-size: 18px;
}

span a:hover{
    opacity: 60%;
}