﻿body {
  color:#272b31;
  font-family: 'Segoe UI Light', 'Segoe UI', sans-serif;
  font-size: 14px;

 
  margin:0;
}

body, html {
    height: 100%;
}
/*
.bgo{
     height: 100%; 
    width:100%;
     z-index:1;
    position:absolute;
    background-color:rgba(0,0,0,0.3);
}
*/
.bg {
    /* The image used */
    background-image: url("/images/m.jpg");

    /* Full height */
    height: 100%; 
    width:100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index:1;
    position:absolute;
}

/* Pen Title */
.title {
  padding: 50px 0;
  text-align: center;
  letter-spacing: 2px;
  z-index:3;
  position:relative;
  color:#fff;
}
.title h1 {
  margin: 0 0 20px;
  font-size: 48px;
  font-weight: 100;
}

.title h2 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 100;
}


/* Form Module */
.form-module {
  position: relative;
  background: #ffffff;
  max-width: 400px;
  width: 100%;
  border-top: 5px solid #5176b5;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  z-index:2;
  text-align:center;
}

.form {
  display: block;
  padding: 40px;
}
.form h2 {
  margin: 0 0 20px;
  color: #5176b5;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
input, select {
  outline: none;
  display: inline-block;
  width: 100%;
  border: 1px solid #d9d9d9;
  margin: 0 0 20px;
  padding: 10px 15px;
  box-sizing: border-box;
  font-weight: 200;
  font-size:18px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: 'Segoe UI Light', 'Segoe UI', sans-serif!important;
}
input:focus {
  border: 1px solid #6da2fb;
  color: #333333;
  box-shadow: 0 0 12px rgba(51, 51, 212, 0.20);
}
input[type=submit],input[type=button] {
  cursor: pointer;
  background: #5176b5;
  width: 100%;
  border: 1px solid #5176b5;
  padding: 10px 15px;
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin:0;
}
input[type=submit]:hover, input[type=button]:hover {
  background: #598de5;
}

label {
  
  font-weight: 400;
  font-size:20px;
  color:#5176b5;
}

p {
  margin: 0px 0px 20px 0px;
  font-weight: 400;
  font-size:14px;
  
}

.form-presenze {
  display: block;
  padding: 0px 40px;
  margin: 0px 40px;
}
.title-presenze {
    background:#5176b5;
}
.title-presenze h1 {
  padding: 20px 20px;
  font-size: 28px;
  font-weight: 100;
  color:#fff;
  margin:0px;
}
span{
    font-size: 16px;
}

.docente-log{
    position: absolute;
    top: 34px;
    right: 20px;
    color: #fff;
}


table {
    border-collapse: collapse;
    width: 100%;
    font-weight:400;
    font-family: 'Segoe UI', sans-serif;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    margin-top:5px;
}

th {
    text-align: left;
    padding: 8px;
    font-weight:600;
    font-size:16px;
    border-bottom: 2px solid #ccc;
}

td {
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {background-color: #f2f2f2;}



a, a:visited, a:link{
    text-decoration:none;
    color:#5176b5;
}


/*Loader*/
.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  margin: 10% auto;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*End Loader*/


/*notify*/
.alert.warning{
    background-color:#f1ed29;
}

.alert.success{
    background-color:#4CAF50;
}
.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
    margin-top:10px;
    font-size:18px;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

/*end notify*/