h2{
    font-family: Roboto Flex;
}


body {
    font-family: Roboto Flex;

    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
    background-color: #fff;
}
.left-section {
    font-family: Roboto Flex;
color: white;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: left;
    font-weight: 700;
    font-size: 75px;
}
.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}
.login-form {
    width: 100%;
    max-width: 300px;

}
.login-form h2 {
    font-size: 2.5em;
    text-align: left;
    margin-bottom: 20px;
}
.login-form p {
    text-align: left;
    margin-bottom: 10px;
}
.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.login-form button {
    width: 100%;
    padding: 10px;
    /*background-color: #004d40;*/
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2em;
}
.login-form button:hover {
    background-color: #525252;
}

.logo-wrapper {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    position: absolute;
    right: 20px;
    bottom: 20px;
}
img.custom-logo {
    width: 7vw;
    height: auto;
}
.logo {
    position: absolute;
    top: 20px;
    right: 20px;

}
.logo-intersport {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 14vw;

}
.alert.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

/* media queries */
@media (max-width: 968px) {
    body {
        flex-direction: column-reverse;
    }
    .left-section {
        padding: 20px;
    }
    .right-section {
        padding: 20px;
    }
    .login-form {
        max-width: 100%;
    }
}
