/* CLASSES */

.login-container {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 75px;
}

.title {
    width: 50%;
    max-width: 900px;
    min-width: 500px;
    filter: drop-shadow(0px 8px 0px rgba(0, 0, 0, 0.3));
}

.login-form {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-width: 600px;
    width: 600px;
    height: fit-content;
    padding: 15px 20px 15px 20px;
}

.login-header, .input-container > label, .signup {
    color: white;
    text-shadow: 0px 5px 0 rgba(0, 0, 0, 0.5);
}

.login-form label {
    font-size: 40px;
}

.login-header {
    font-size: 52px;
}

.login-form > hr {
    width: 100%;
    border: none;
    border-top: 2.5px solid white;
    border-bottom: 2.5px solid white;
    height: 4px;
}

.login-bg {
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -2;
}

.signup {
    font-size: 22px;
    text-align: left;
    text-shadow: 0px 3px 0 rgba(0, 0, 0, 0.5);
}

.submit-container {
    position: relative;
    margin: auto;
    margin-bottom: 5px;
    font-size: 36px;
    font-family: "main";
    width: 50%;
    height: 100%;
    transition: all 0.1s;
}

.submit-container:hover {
    transform: scale(1.008);
}

.submit-container > input {
    background: none;
    font-size: 32px;
    font-family: "main";
    width: 100%;
    height: 100%;
    border: none;
    color: rgb(20, 60, 20);
}

.submit-container > input:focus {
    outline: none;
}

.submit-bg {
    border-radius: 10px;
    background-color: rgb(80, 255, 80);
    box-shadow: 0px 5px 0 rgb(42, 130, 42);
    z-index: -1;
}