.ln-container {
    background: #005eb8;
}

.ln-header {
    padding: 20px 10px;
    position: relative;
}

.ln-header svg {
    fill: white;
    position: absolute;
    left: 15px;
    top: 23px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.ln-logo {
    display: block;
    text-align: center;
    font-weight: 700;
    color: white;
    font-style: italic;
    font-size: 20px;
}

.ln-content {
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    position: relative;
}

.ln-content p {
    margin: 10px 0 20px;
}

.dark-txt {
    font-weight: 600;
    display: block;
    font-size: 16px;
}

.normal-txt {
    color: grey;
    font-size: 12px;
}

.ln-input-grp {
    border: 1px solid #ccc;
    overflow: hidden;
    border-radius: 5px;
    padding: 10px 10px;
    display: flex;
    flex-wrap: nowrap;
}

.ln-input-grp input {
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    width: 100%;
}

.ln-input-grp input:focus {
    outline: 0;
}

.ln-input-grp span {
    border-right: 1px solid #ccc;
    padding: 5px 10px 5px 0;
}

.ln-agreement {
    font-size: 12px;
    color: grey;
    margin: 30px 0 !important;
}

.ln-agreement a {
    text-decoration: none;
    color: #005eb8;
}

.btn-div {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.login-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
}

.login-btn.disabled {
    color: white;
    background: #d9d9d9;
    cursor: not-allowed;
}

.login-btn.active {
    color: white;
    background: #f60;
    cursor: pointer;
}

/* Breakpoints */
@media only screen and (min-width: 992px)  {

    .ln-container {
        height: 100%;
    }

    .ln-content {
        max-width: 500px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        border-radius: 20px;
        margin: auto;
        aspect-ratio: 1/1;
        position: relative;
    }

    .btn-div {
        box-shadow: none;
        position: absolute;
    }

    .c-link {
        margin: 0 20px 0 0;
    }

}