﻿* {
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  padding: 0;
  margin: 0;
}

.main-container {
  width: 100vw;
  height: 100vh;
  display: flex;
}

.left-side-bar {
  min-width: 25vw;
  position: absolute;
  height: 100%;
  background-color: white;
  min-height: 480px;
}


.left-side-bar2 {
  min-width: 100vw;
  position: absolute;
  height: 100%;
  background-color: white;
  min-height: 480px;
}

.background-container {
  width: 100%;
  background-image: url(../images/photo_van_nature.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.logo-container {
  margin: 60px 0;
  text-align: center;
}

.form-container {
  padding: 10px 50px;
  width: 400px;
  margin: auto;
}

form > * {
  text-align: center;
}

.btn-submit {
  background-color: #fbd100;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 400px;
  padding: 6px 0;
  width: 100%;
  margin: auto;
  margin-bottom: 16px;
  text-align: center !important;
}

.btn-submit:hover {
  background-color: #d6af00;
}

input {
  outline: none;
  border: none;
  padding: 12px 10px;
  background-color: #f6f6f6;
  border-radius: 5px;
  width: 100%;
  text-align: left !important;
  margin-bottom: 12px;
}

.login-title {
  padding-bottom: 16px;
  text-align: left;
}

img {
  max-width: 250px;
  max-height: 350px;
  object-fit: contain;
}

.psw-dimenticata {
  font-size: small;
  text-decoration: none;
  color: black;
}

.psw-dimenticata:hover {
  color: #221bb1;
}

.attention {
    text-align: left;
    padding-bottom: 20px;
}

.footer {
    position:  absolute;
    font-size: .75rem;
    bottom: 0;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  color: black;
}

.footer a {
    color:black;
}




@media (max-width: 900px) {
  .background-container {
    display: none;
  }
  .left-side-bar {
    width: 100%;
  }
  .left-side-bar2 {
    width: 100%;
  }
}
