/* LOGIN PAGE */

.login-page {
    background: #f8f9fa;
}

/* LEFT SIDE */

.login-left {
	color: #555;
    padding: 60px;
}

.login-left-content {
    max-width: 420px;
}

.login-left h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.login-tagline {
    font-size: 15px;
    margin-bottom: 30px;
}

/* FEATURES */

.feature-list {
    padding-left: 18px;
}

.feature-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.feature-item i {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

/* RIGHT SIDE */

.login-right {
    padding: 40px;
}

.login-form-container {
    max-width: 400px;
    margin: auto;
}

/* INPUT */

.inputField {
    height: 45px;
    border-radius: 6px;
}

.input-group-text {
    border-radius: 6px 0 0 6px;
}

/* BUTTON */

.signinButton {
    background: #3a9188;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
}

.signinButton:hover {
    background: #044a42;
}

/* LINKS */

.forgotPassword {
    font-size: 13px;
    color: #3a9188;
    text-decoration: none;
}

.register-link {
    color: #3a9188;
    font-weight: 500;
}

/* MOBILE */

@media (max-width: 991px) {
    .login-left {
        display: none;
    }
}


/* Input consistency */

.inputField {
    height: 45px;
    border-radius: 6px;
}

/* Password eye icon */

.togglePassword,
.toggleConfirmPassword {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
    color: #777;
}

/* Button */

.primary-button {
    background: #3a9188;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
}

.primary-button:hover {
    background: #044a42;
}