.bg {
    /* The image used */
    background-image: url("../images/bg.jpg");
  
    height:100%;

    /* Add the blur effect */
    filter: blur(8px);
    -webkit-filter: blur(8px);
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body {
  margin:0;
}

* {
    box-sizing: border-box;
}

.login-container {
    align-items: center;
    display:flex;
    flex-direction: column;
    background-color: transparent;
    background-image: linear-gradient(180deg,var(--primary),var(--secondary));
    height:auto;
    width: 25%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    border-radius: 5em;
    transform: translate(-50%, -50%);
    border:4px solid black;
}

.container {
    left:5%;
    margin-top:2%
}

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

.login-input {
    width:90%;
    padding:2%;
    margin-top:5%;
    border-radius: 25px;
    text-align: center;
    font-size: 30px;
    outline:none;
    border:3px solid black;
}

.login-btn {
    width:90%;
    padding:2%;
    margin-top:5%;
    border-radius: 25px;
    font-size: 30px;
    border:3px solid black;
}

.popUp {
    background-color:white;
    margin-top:1em;
    height:0;
    width:90%;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:5em;
    position:absolute;
    top:1em;
}
  
.popUp p {
    margin: 0;
    font-size: 1.75em;
}

.wrongInfo {
    margin:0;
    margin-top:0.5em;
    font-size:1.75em;
    color:red;
    font-weight:1000;
}

.check {
    width: 25px;
    height: 20px !important;
    padding: 0;
    padding-bottom: 2px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
}

.checkCon {
    display: block;
    position: relative;
    padding-left: 15px;
    margin-bottom: 7px;
    margin-top: 3px;
    margin-right: 20px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
}

.checkText {
    width: 300px;
    height: 200px;
    white-space: nowrap;
}
  
/* Hide the browser's default checkbox */
.lineCheck, .woLineCheck {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
  
/* On mouse-over, add a grey background color */
.checkCon:hover input ~ .checkmark {
    background-color: #ccc;
}
  
/* When the checkbox is checked, add a blue background */
.checkCon input:checked ~ .checkmark {
    background-color: #2196F3;
}
  
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
/* Show the checkmark when checked */
.checkCon input:checked ~ .checkmark:after {
    display: block;
}
  
/* Style the checkmark/indicator */
.checkCon .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

a{
  font-size:1.5em;
}

a:link {
  color:black;
}

a:visited {
  color:black;
}

label {
  font-size:1.5em;
}

/* Tablet */
@media (max-width: 1200px)  {
    .login-container {
        width:80%;
    }
    .login-input {
        padding:1%;
        margin-top:2.5%;
    }
    .login-btn {
        padding:1%;
        margin-top: 2.5%;
    }
    .popUp p {
        font-size: 2.5em;
    }
}
  
/* Smartphone */
@media (max-width: 800px)  {
    .login-container {
        width:100%;
        height:100%;
        border-radius: 0px;
        border:none;
    }
    .login-input {
        padding:.5%;
        margin-top:2%;
    }
    .login-btn {
        padding:.5%;
        margin-top: 2%;
    }
    .popUp p {
        font-size: 3em;
    }
}

@media (max-width: 600px) {
  .popUp p {
        font-size: 2.5em;
    }
}

@media (max-width: 500px) {
  .popUp p {
        font-size: 2em;
    }
}