body{
    background-color: Black;
    border: 0px;
    box-sizing: 0px;
    font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
    background-image: url('../images/bg_1.jpg');
    background-repeat: repeat;
    background-size:auto;
    box-sizing: border-box;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
.cover{
    width: 100%;
    height:600px;
}
#blue-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #003754;
    color: #ff8c00;
    text-align: center;
    padding-top: 50px;
}
.main{
    display: block;
    margin: auto;
    margin-top: 10vh;
    color:white;
    width: 100%;
    max-width: 460px;
    height: 600px;
    border: 2px solid #ff8c00;
    border-radius: 5px;
    background-color: #003754; 
}
.main .header{
    width:100%; 
    height:110px; 
    display: block; 
    text-align:center; 
    padding-top:5px;
}
.login{
    margin-top: 40px;
    color:#00fff8;
    display: block;
    width:100%;
    min-width: 350px;
    padding: 5px;
    height: 415px;
    text-align: center;
}
.login label {
    display: inline-block;
    width: 35px;
    height: auto;
    color: #ffffff;
    vertical-align: top;
}
.login input[type="password"], .login form input[type="text"] {
    width: 260px;
    height: 28px;
    border: 1px solid #dee0e4;
    margin-bottom: 12px;
    padding: 0 5px;
    font-size: 14px;
    font-weight: bolder;
    display: inline-block;
}
.login form input[type="submit"] {
    width: 200px;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 10px;
    background-color: #07678c;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
  background-color: darkorange;
  transition: background-color 0.2s;
}

/* ######################## Showing Error alerts ########################  */
.red{
    background-color: #811331; 
    color:white;
    width:100%; 
    border-radius:5px; 
    padding: 10px; 
    text-align: center;
}
.green{
    background-color: darkgreen; 
    color:white; 
    width:60%; 
    border-radius:5px; 
    padding: 10px; 
    text-align: center;
}
.orange{
    background-color: darkorange; 
    color:white; 
    width:60%; 
    border-radius:5px; 
    padding: 10px; 
    cursor: pointer;
    text-align: center;
}.orange:hover{
    background-color: orange; 
}

/* ############################### Welcome Page  ############################### */
.item {
    position: relative;
    display:block;
    margin:auto;
}

.item h2 {
    text-align:center;
    position: absolute;
    line-height: 145px;
    width: 100%;
    color: #ff8c00;
}

svg {
-webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #ff8c00;
}

.circle_animation {
stroke-dasharray: 440; /* this value is the pixel circumference of the circle */
stroke-dashoffset: 440;
transition: all 1s linear;
}
