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

:root {
    --primary : #361163;
    --secondary : #b38e5e;
    --btn: #c0863a;
    --btn-hover: #cf8c34;
    --third: #4d46b3;
    --textlight: #FDFDFD;
    --textdrak: #0F172A;

    --font-weight-heading: 700;
    --font-weight-body: 400;

    --font-size-h1: 3rem;
    --font-size-h2: 2.25rem;
    --font-size-h3: 1.875rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.25rem;

    --font-size-body1: 1.25rem;
    --font-size-body2: 1rem;
    --font-size-body3: 0.875rem;
    --font-size-body4: 0.75rem;
}
body{
    background-color: #e9e3e3;
}
.logo{
    width: 100%;
    display: inline-flex;
    /* align-items: center; */
    justify-content: center;
    margin-bottom: 24px;
}
.logo img{
    width: 25%;

}
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 430px;
  width: 100%;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.container .registration {
  display: none;
}
#check:checked ~ .registration {
  display: block;
}
#check:checked ~ .login {
  display: none;
}
#check {
  display: none;
}
.container .form {
  padding: 2rem;
}
.form header {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5rem;
}
.form input {
  height: 60px;
  width: 100%;
  padding: 0 15px;
  font-size: 17px;
  margin-bottom: 1.3rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}
.form input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.form a {
  font-size: 16px;
  color: var(--third);
  text-decoration: none;
}
.form a:hover {
  text-decoration: underline;
}
.form input.button {
  color: #fff;
  background: var(--btn);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1.7rem;
  cursor: pointer;
  transition: background 0.4s;
}
.form input.button:hover {
  background: var(--btn-hover);
}
.signup {
  font-size: 17px;
  text-align: center;
}
.signup label {
  color: var(--third);
  cursor: pointer;
}
.signup label:hover {
  text-decoration: underline;
}
