*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #FFFFFF;
  min-height: 100vh;
  overflow-x: hidden; 
}
.nav-bar{
  background: #FFF000;
  height: 60px;
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: auto;
}
nav a{
  height: 100%;
  padding: 0 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 16px;
}
nav li:first-child{
  margin-right: auto;
}
a.logo{
  font-weight: 800;
  font-size: 20px;
  color: #333333;
}
.nav-button {
  display: flex; 
  align-items: center; 
  justify-content: center;
  padding: 8px 10px;
  width: 80px;
  height: 32px;
  background-color: #FFFFFF;
  color: #333333;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin: 15px 0px;
  font-weight: bold;
}
.nav-button:hover {
  background-color: #E3007F; 
  color: #FFFFFF;
}
.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: #00000099;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
  color: #FFF000;
  font-size: 16px;
}
.sidebar li:last-child{
  background-color: #FFFFFF;
}
.sidebar a.side-button{
  color: #000000;
  align-items: center;
}
.img-container h1{
  position: absolute;
}
.parent{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0px;
}
.container {
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 328px;
    height: auto;
    color: #000000;
    font-size: 12px;
}
.lower-container{
    display: flex;
    justify-content: space-between;
}
.lower-container a{
  text-decoration: none;
}
.terms{
  display: flex;
  width: 328px;
  justify-content: flex-end;
  text-decoration: none;
}
.terms a{
  text-decoration: none;
  font-size: 12px;
}
.img-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden; 
}
img {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    top: 0;
    padding-top: 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sign-in-text {
  color: white;
  font-size: 46px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
a{
    color: #1155CC;
    font-size: 12px;
    padding: 10px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
}
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type="submit"] {
    width: 120px;
    padding: 12px 34px;
    border: none;
    border-radius: 4px;
    background-color: #E3007F;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
input[type="submit"]:hover {
    background-color: #660033;
    color: #FFFFFF;
}
#error-message {
  background-color: #F5C6CB;
  color: #721C24;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 14px;
  display: none;
  text-align: center;
  border: 1px solid #ef9a9a;
}
footer{
  background: #FFF000;
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0px 100px;
  margin-top: auto;
}
footer ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer li{
  color: #333333;
}
footer li:first-child{
  margin-right: auto;
  font-weight: 800;
  font-size: 20px;
}
