body {
    font-family: Arial, sans-serif;
    background-color: #FFF;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container{
    width: 1000px;
    margin: 0 auto;
    background-color: #fff4ef;
    flex: 1;
    padding:unset;
    display: flex;
    flex-direction: column;
}


.content{
  position: relative;
  width: 400px;
  height: 300px;
  background-color: #ffffff;
  margin: 0 auto;
  border: 1px solid #cccccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding-left: unset;
  padding-right: unset;
  margin-top: auto;
}

.title{
  background-color: #ffcc00;
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  text-align: left;
  position: relative;
}

.title .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.form-signin {
  padding: 30px;
  margin: 0 auto;
}

.form-signin .form-group {
  margin-bottom: 15px;
}

.form-signin label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-signin input[type="text"],
.form-signin input[type="password"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
}

.form-signin #signin {
  background-color: #ffcc00;
  color: #000000;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  float: right;
  margin-top: 10px;
}

#remember_me {
  cursor: pointer;
}

.checkbox {
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkbox label {
  font-weight: normal;
  display: inline-block;
  margin-left: 5px;
}

.checkbox input {
  display: inline-block;
  transform: none;
  width: auto;
  position: relative;
  top: 0;
  left: 0;
}


.header {
    height: 100px;
    background-color: #ffc5b8;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-left {
    display: flex;
    align-items: center;
}


.footer {
    background-color: #ffd1b8;
    height: 60px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;    
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-left img {
    max-height: 50px;
}

.footer-right {
    text-align: right;
    font-size: 12px;
    color: #333;
}

.footer-right a {
    color: #d9371c;
    text-decoration: none;
    margin: 0 5px;
    font-family: Arial;
    font-size: 13px;
}

.footer-right a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 10px;
    font-family: Arial;
    font-size: 13px;
    color: #000;
}