.login-form {
    box-sizing: border-box;
    opacity: 0%;
    background-color: rgba(255,255,255,0.25);
    width: 60%;
    min-width: 180px;
    max-width: 500px;
    border-radius: 16px 16px 16px 16px;
    padding: 15px;
    margin: 1%;
    color: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: height 0.3s ease, max-height 0.3s ease, margin-bottom 0.3s ease, opacity 1s ease;
    overflow: hidden;
}

.login-form input[type=text],input[type=password] {
    box-sizing: border-box;
    margin-top: 30px;
    margin-bottom: 0px;
    width: calc(100% - 18px);
    padding: 7px;
    background: rgba(255,255,255,0.1);
    border: 3px solid transparent;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    font-family: "Consolas";
    font-size: large;
    color: rgba(0,0,0,0.7);
}

.login-form input[type=text]:hover,input[type=password]:hover {
    border: 1px solid #3498db;
    margin-bottom: 2px;
    margin-top: 32px;    
}

.login-form input[type=text]:focus,input[type=password]:focus {
    border: 3px solid #3498db;
    margin-bottom: 0px;
    margin-top: 30px;
}

.login-form input[type=text]::placeholder,input[type=password]::placeholder {
    color: rgba(0,0,0,0.4);
    font-family: "Consolas";
}

.login-form h2 {
    color: rgba(0,0,0,0.6);
    font-size: 2.5rem;
    margin: 0px;
}

.login-button {
    width: 100%;
    height: 40px;
    margin-top: 30px;
    font-size: larger;
    text-transform: uppercase;
    font-family: "Open Sans", Consolas, Helvetica, sans-serif;
    color: rgba(0,0,0,0.75);
    background-color: rgba(255,255,255,0.2);
    border: none;
    outline: none;
    border-radius: 7px 7px 7px 7px;
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.login-button:hover {
    border: 1px solid #3498db;
    color: rgba(0,0,0,1);
}

.login-button:active {
    transition: all 0.1s ease;
    border: 3px solid #3498db;
    background-color: rgba(255,255,255,0.45);
}

.login-button:disabled {
    color: rgba(0,0,0,0.2);
    border: 0px solid transparent;
    cursor: default;
}

.pointer-cursor {
    cursor: pointer;
}

.remember-me-div {
    width: 140px;
    margin: 10px auto -5px auto;
    color: rgba(30,30,50,0.65);
    transition: all 0.1s ease;
}

.remember-me-div:hover {
    color: rgba(30,30,50);
}

.login-headers {
    width: 100%;
    margin: 0px;
    display: flex;
    justify-content: space-evenly;
}

.login-headers h2 {
    font-size: xx-large;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.sign-in-content,.sign-up-content {
    width: 100%;
}

.login-headers .login-header-activated {
    opacity: 0.8;
}

.login-headers h2:hover {
    font-size: xx-large;
    opacity: 1;
}

@media (max-width: 800px) {
    .login-headers h2 {
        font-size: x-large !important; 
    }
}

@media (max-width: 630px) {
    .login-headers h2 {
        font-size: larger !important;
    }
}

@media (max-width: 460px) {
    .login-headers h2 {
        font-size: large !important;
    }
}