body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

.login-container {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    background-color: #b3d9d9;
    color: #fff;
    flex: 0.75;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    /*border-radius: 24px;*/
    /*overflow: hidden;*/
}

.tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 40px;
}

.logo {
    margin-top: 100px;
    margin-bottom: 30px;
}

.logo img {
    width: 400px;
    height: auto;
}

.right-panel {
    flex: 1.25;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.form-wrapper {
    width: 100%;
    max-width: 400px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #91d1d1;
}

.btn-primary {
    background-color: #a3d8d8;
    border-color: #a3d8d8;
    color: #fff;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #91d1d1;
    border-color: #91d1d1;
}

.form-text a {
    color: #75c6d3;
    text-decoration: none;
}

.form-text a:hover {
    text-decoration: underline;
}

.form-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #222;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .left-panel {
        padding-top: 80px;
    }

    .tagline {
        font-size: 1.6rem;
        top: 30px;
    }

    .logo {
        margin-top: 80px;
    }

    .logo img {
        width: 300px;
    }
}
