.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mid_container {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 30%;
}

.mid_position_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;

    margin-top: 3vh;

}

.login {
    margin-right: 10px;
}

.card {
    /* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
    /* transition: 0.3s; */
    margin-top: 50px;

    width: 100%;
    border: solid;
    color: black;
    background-color: var(--white);

    padding: 5vh;
    padding-bottom: 10vh !important;
    padding-top: 7vh !important;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.welcome {
    text-align: center;

    margin-bottom: 3vh;
}

.input {
    border: solid;
    color: black;
    background-color: var(--gray);

    width: 100%;
    height: 37px;

    padding: 5px;

    margin-top: 10px;
    margin-bottom: 20px;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;



    width: 50%;
    background: var(--black);
    color: var(--white);
    height: 40px;
    margin-top: 5px;
    border: none;
    border-radius: 0 !important;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease-in-out;
}
.register{
    text-decoration: none;
    color: white;
}
.register:hover{
    color:black;
}
.button:hover {
    background: var(--orange);
    color: var(--black);
}


/* ALERT */
.alert {
    width: 30%;
    height: auto;
    margin: 1rem auto 0 auto;
    background-color: var(--white);
    border: 3px solid var(--black);
    
    padding: 20px;
    background-color: #f44336;
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
  }
  
  .alert.success {background-color: #04AA6D;}
  .alert.info {background-color: #2196F3;}
  .alert.warning {background-color: #ff9800;}
  
  .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;
  }
  /*  */

@media only screen and (max-width:768px) {

    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .mid_container {
        flex-direction: column;
        justify-content: center;
        align-items: center;

        width: 90%;
    }

    .card {
        /* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
        /* transition: 0.3s; */
        margin-top: 50px;
        width: 100%;

    }


}

/* Media Query for Mobile Devices */
@media (max-width: 375px) {
    button {
        font-size: 10px;
    }
}

/* Media Query for low resolution  Tablets, Ipads */
/* @media (min-width: 481px) and (max-width: 767px) {
 
} */

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {}

/* Media Query for Large screens */
@media (min-width: 1281px) {}