.roboto-font {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.lemon-regular {
    font-family: "Lemon", serif;
    font-weight: 400;
    font-style: normal;
  }
  
* {
    box-sizing: border-box;
    font-family: "Roboto";
}

body {
    display: flex;
    width: 100%;
    height: 100%;
    flex: 0 1;
    margin: 0;
    background-color: #fffcf2;
}

.splash {
    display: flex;
    flex: 1 0 60vh;
    position: relative;
    height: 100vh;
}

img {
    max-width: 100%;
    max-height: 100vh;
}

.splash div {
    position: absolute;
}

.splash .logo {
    position: absolute;
    top: 150px;
    display: flex;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    font-family: "Lemon";
    font-size: 40px;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.logo img {
    height: 125px;
}

.attributes {
    position: absolute;
    display: flex;
    align-self: flex-end;
    justify-content: center;
    width: 100%;
    color: white;
    font-size: 14px;
    gap: 4px;
}

.attributes a {
    color: white;
}

.right {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: auto;
}

.paragraph-container {
    font-size: 24px;
    font-weight: 550;
    margin: 100px 150px 30px 50px;
}
.form-container p,
.form-container .form-row,
.login,
button {
    margin-left: 50px;
}

.form-container {
    background-color: #ccc5b9;
    padding: 20px 0px;
    margin-bottom: 20px;
    box-shadow: 4px 5px 8px #b1b0b0;
}

.form-container p {
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 550;
    font-size: 28px;
}

.form-row {
    display: flex;
    gap: 162px;
}

.form-row div {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15rem;
    margin-bottom: 2px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    appearance: none;
    width: 140%;
    height: 34px;
    border: 1px solid #5c5c5c;
    border-radius: 4px;
    background-color: #ccc5b9;
    font-size: 16px;
    padding-left: 16px;
}

input[type="password"]:invalid {
    border: 1px solid red;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border: 1px solid blue;
    box-shadow: 1px 4px 5px #b1b0b0;
}

input {
    margin-bottom: 16px;
}

button {
    padding: 15px 70px;
    font-size: 20px;
    font-weight: 650;
    background-color: #cc5803;
    border: none;
    border-radius: 5px;
    box-shadow: 1px 3px 5px #b1b0b0;
    color: #fffcf2;
}

.loglink {
    text-decoration: none;
    color: #cc5803;
}