body {
    background-color: #fff2e8;
    font-family: 'Trebuchet MS';
}

header {
    display: flex;
    align-items: center;
    background-color:#fff2e8;
    box-shadow: 0px 1px 10px #aaa;
    height: 70px;
    padding-left: 15px;
    padding-right: 15px;
}

.logo {
    display: block;
    height:50px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: auto;
}

.center {
    display: block;
    margin: auto;
}

.selection {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    padding: 10px;
}

.select {
    position: relative;
    background: transparent;
    color: #114011;
    border: none;
    border-bottom: 0 solid #114011;
    width: 150px;
}

.select::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #114011;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

.select:hover::after {
    transform: scaleX(1);
}

.separator {
    display: flex;
    width: 2px;
    background-color: #114011;
    margin-left: 10px;
    margin-right: 10px;
}

#loginbtn {
    color: #fff2e8;
    background-color: #114011;
    width: 150px;
    padding-right: 10px;
}

#loginbtn:hover {
    background-color: #0e300e;
}

.form-control:focus {
  box-shadow: none !important;
  outline: none !important;
}

#login_confirm {
    display: flex;
    color: #fff2e8;
    background-color: #114011;
    display: flex;
    justify-content: center;
    align-items: center;
}

#login_confirm:hover {
    background-color: #0e300e;
}

#login_email, #login_password {
    text-align: center;
    background-color:#fff2e8;
    border-color: transparent;
    border-bottom-color: #114011;
}

#login_email, #login_password {
    text-align: center;
    background-color:#fff2e8;
    border-color: transparent;
    border-bottom-color: #114011;
}

#signup, #login {
    text-align: center;
}

#signup_email, #signup_password, #signup_name, #signup_lastname, #signup_password_confirm {
    text-align: center;
    background-color:#fff2e8;
    border-color: transparent;
    border-bottom-color: #114011;
}


#signup_name {
    margin-right: 5px;
}

#signup_lastname {
    margin-left: 5px;
}

#signup_confirm {
    display: flex;
    color: #fff2e8;
    background-color: #114011;
    display: flex;
    justify-content: center;
    align-items: center;
}

#signup_confirm:hover {
    background-color: #0e300e;
}

#homebtn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 0 solid #114011;
}

#homebtn svg {
    color: #114011;
    width: 50px;
    height: 50px;
}

#homebtn::after { 
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #114011;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

#homebtn:hover::after {
    transform: scaleX(1);
}

#welcome {
    text-align: center;
    color: #114011;
    font-size: 40px;
}

#roleToggle {
  display: none;
}

.toggle {
  display: flex;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #fff2e8;
  transition: background-color 0.3s ease;
  border: #114011 1px solid;
  border-radius: 5px;
}

.toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #114011;
  transition: transform 0.3s ease;
}

#roleToggle:checked + .toggle::before {
  transform: translateX(100%);
}

.toggle .btn {
  flex: 1;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  user-select: none;
}

.toggle .designer {
  color: #fff2e8;
}
.toggle .entrepreneur {
  color: #114011;
}

#roleToggle:checked + .toggle .designer {
  color: #114011;
}
#roleToggle:checked + .toggle .entrepreneur {
  color: #fff2e8;
}

.category_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;  

  max-width: calc((400px * 3) + (30px * 2));
  margin: 0 auto;
}

.category_container {
    width: 400px;
    height: 220px;
    color: #fff2e8;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 24px;
    box-shadow: 0px 1px 10px #aaa;
    transition: transform 0.3s ease;
}

.category_container:hover {
    transform: scale(1.05);
}

.category_img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.category_text {
    height: 50px;
    font-size: 24px;
    color: #114011;
    background-color: #fff2e8;
    border: none;
}