html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
    background-image: url("/images/Seeotter_Login_Background_cut.png");
    background-repeat: no-repeat;
    background-size: cover;

    @media (max-width: 1279px) {
        background: #758A96;
        display: flex;
        flex-direction: column;
    }
}

.login-quote {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    color: white;
    padding-top: 2%;
}

.seaotter-image-mobile {
    width: 100%;
    height: 100%;
}

.content {
    visibility: hidden;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;

    @media (min-width: 1279px) {
        margin-left: 7%;
        justify-content: start;
        height: 95vh;
    }
}

.login-panel {
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    height: max-content;
    min-width: 23%;
    padding: 2%;

    @media (max-width: 1500px) {
        min-width: 30%;
    }

    @media (max-width: 1279px) {
        width: 80%;
    }
}

.logo-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 90px;
    width: 90px;
    margin-top: -85px;
    display: flex;
    align-items: center;

    @media (max-width: 1279px) {
        height: 190px;
        width: 190px;
        margin-top: -120px;
    }
}

.login-headline {
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0 20px 0;

    @media (max-width: 1279px) {
        font-size: 85px;
        margin-top: 30px;
    }
}

.register-user-div {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #494E54;

    @media (max-width: 1279px) {
        font-size: 35px;
        margin-bottom: 70px;
    }
}

.register-user-link {
    color: #494E54;
}

.login-inputs-overall {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
    padding: 0 5%;
}

.login-input-headline {
    font-weight: bold;
    font-size: 20px;
    padding-left: 3px;

    @media (max-width: 1279px) {
        font-size: 40px;
        padding-top: 40px;
    }
}

.login-input {
    border-radius: 7px;
    margin: 7px 0 30px 0;
    padding-left: 10px;
    height: 32px;
    font-size: 17px;
    border: none;

    @media (max-width: 1279px) {
        height: 60px;
        font-size: 30px;
        border-radius: 15px;
    }
}

.login-input:nth-child(4) {
    margin-bottom: 8px;
}

.forgot-password-div {
    color: #494E54;
    font-size: 12px;
    padding-left: 3px;

    @media (max-width: 1279px) {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

.login-button-div {
    text-align: center;

    @media (max-width: 1279px) {
        margin-top: 100px;
    }
}

.login-button {
    width: 60%;
    background-color: #758A96;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 7px;
    padding: 8px;

    @media (max-width: 1279px) {
        font-size: 38px;
        padding: 15px;
    }
}

.legal-information {
    color: #494E54;
    font-size: 15px;
    margin-top: 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;

    @media (max-width: 1279px) {
        font-size: 30px;
        margin: 80px 0 30px 0;
    }
}

.legal-information-separator {
    margin: 0 10px;
}

.legal-information a {
    text-decoration: none;
    color: #494E54;
}