.login-card-container {
    align-items: center;
    background-color: #181818;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    vertical-align: middle;
    width: 100%;
    padding: 0 25px;
}

.login-div {
  align-items: center;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #cbced1;
  display: flex;
  flex-direction: column;
  height: 700px;
  padding: 60px 35px 35px 35px;
  width: 50%;
}

.login-wrp {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.logo-container {
  align-items: center;
  background-color: #ecf0f3;
  border-radius: 50px 0 50px 0;
  box-shadow: 0px 0px 2px #5f5f5f, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaaf,
    -8px -8px 15px #fff;
  display: flex;
  height: 150px;
  justify-content: center;
  width: 60%;
}

.logo {
  height: 100px;
  width: 100px;
}

.title {
    color: white;
    font-size: 1.7em;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 20px 0;
    text-align: center;
    margin: 0;
}

.fields {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
}

.form-container{
    width: 100%;
}

.fields input {
    color: white !important;
    background: none;
    border: none;
    outline: none;
    width: 100%;
}

.user-input{
    color: white;
}

.username,
.password {
    align-items: center;
    border-radius: 4px;
    border: 1px solid #707070;
    display: flex;
    height: 56px;
    justify-content: flex-start;
    margin-bottom: 24px !important;
    width: 100%;
}

.input-icon {
  margin: 0 15px;
  width: 15px;
}

.button-container{
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.signup-button {
    width: 100%;
    min-height: 34px;
    min-width: 100px;
    padding: 6px 12px;
    color: white;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    background-color: #00aa68;
    border: none;
    outline: none;
}

.signup-button:hover {
    background-color: #01633d;
    border: none;
    outline: none;
    transition: 0.2s;
}

    .signup-button:focus {
        background-color: #01633d;
        border: none;
        outline: none;
        transition: 0.2s;
    }

.password-dimenticata__text {
    color: #ff4081;
}

.checkbox-container {
    padding-left: 30px;
    width: 100%;
}

.toggle {
  position: relative;
}

.toggle__input {
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}

.toggle__label {
    display: inline-flex;
    padding-left: 30px;
    color: #707070;
    cursor: pointer;
}

    .toggle__label::after {
        border: 2px solid #707070;
        border-radius: 3px;
        box-sizing: border-box;
        content: "";
        height: 18px;
        left: 0;
        margin-top: 4px;
        position: absolute;
        top: 0;
        width: 18px;
        z-index: 2;
    }

.toggle__input:checked ~ .toggle__label::after {
    background-color: #ff4081;
    border: none;
    transition: 0.5s;
}

.alert {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    top: 15px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: #707070;
    -webkit-text-fill-color: white;
    transition: background-color 5000s ease-in-out 0s;
}

.lead {
    background-color: #181818 !important;
    height: 100vh;
    width: 100%;
    padding: 0 25px;
}

.lead-text {
    color: white;
    text-align: center;
}


.container {
    max-width: 100% !important;
}

