.login-form {
    text-align: left;
    padding: 2rem;
    background-color: var(--yappy-light-gray);
    border-radius: 8px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.login-form .form-label {
    font-family: "gilroymedium", "Century Gothic", "Futura";
    color: var(--yappy-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-form .form-control {
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.login-form .form-control:focus {
    border-color: var(--yappy-cyan);
    box-shadow: 0 0 0 0.2rem rgba(48, 213, 200, 0.25);
}

.login-form .btn {
    width: 100%;
}

/* Social Divider */
.social-divider {
    text-align: center;
    margin: 2rem 0 1.5rem 0;
    position: relative;
}

.social-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
    z-index: 1;
}

.social-divider span {
    background-color: var(--yappy-light-gray);
    padding: 0 1rem;
    color: var(--yappy-text-gray);
    font-family: "gilroymedium", "Century Gothic", "Futura";
    position: relative;
    z-index: 2;
}

/* Social Sign-in Buttons */
.btn-google {
    background-color: white;
    border: 1px solid #dadce0;
    color: #3c4043;
    border-radius: 2rem;
    font-family: "gilroybold", "Century Gothic", "Futura";
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-size: 1rem;
    padding: .75rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-google:hover,
.btn-google:focus,
.btn-google:active {
    background-color: #f8f9fa;
    border-color: #dadce0;
    color: #3c4043;
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3);
}

.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.btn-facebook {
    background-color: #2374f2;
    border-color: #2374f2;
    color: white;
    border-radius: 2rem;
    font-family: "gilroybold", "Century Gothic", "Futura";
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-size: 1rem;
    padding: .75rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook:active {
    background-color: #1c5bd6;
    border-color: #1c5bd6;
    color: white;
}

.facebook-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    margin-top: -4px;
}


#pForgotPassword
{
    padding-bottom:1rem;
}