@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 400;
  src: url("webfonts/titillium-web-v4-latin-300.woff2") format("woff2");
}

html, body {
  margin: 0;
  height: 100%;
}

body{
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 50% 40%;
  background-size: auto;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sticky {
  flex: 1;
}

.container{
    flex: 1;
    box-sizing: border-box;
}

footer {
    background-color: #333333;
    width: 100%;
    text-align: center;
}

.footer{
    position: inherit !important;
}


/* hide spin buttons */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}


.bg-purple {
    background-color: #232594;
    accent-color: #4850e3;
}

.loginlogo {
    width: 200px;
    margin-bottom: 30px;
}

#rememberme {
    float: left;
    margin-right: 10px;
    margin-left: 20px;
}


.footer0{
    margin-top: 10px;
    width: 100%;
}

.footer1 {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 14px;
}

.footer2 {
    background-color: #000000;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
}


a.footerlink, a.footerlink:visited {
    color: white !important;
}

a.footerlink:hover, a.footerlink:visited:hover {
    color: orange !important;
}


.privtit {
    margin-bottom: 6px;
    font-weight: 300;
}

.privtxt {
    margin-bottom: 6px;
    font-weight: 300;
    text-align: justify;
}

.error {
    background-color: lightyellow;
}

/* Stile finestra modale */
.modalw {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modalw-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 800px;
    width: 80%;
}

.mdw-close-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.social-icon {
    display: inline-block;
    width: 25px;
    height: 27px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background-color: white;
    color: #0369cf;
    font-size: 18px;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: #3b5998;
    color: white;
}
