﻿@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    font-family: "Elms Sans", sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Elms Sans", sans-serif !important;
    font-weight: 800 !important;
    font-style: normal !important;
    color: #0d3d22 !important;
}

p, body {
    color: #346b47 !important;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7fffd !important;
}

a:hover {
    text-decoration: none;
}

.login-form-box {
    background-color: #ffffff;
    border: 1px solid #f5eae5;
    box-shadow: 0 10px 15px -3px rgb(121 85 72 / 15%);
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 0px auto;
    width: 500px;
}

.title-section img {
    width: 80px;
}

.title-section {
    text-align: center;
    margin-bottom: 2rem;
}

.icon-field {
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    margin-left: 15px;
}

.input-field-group label {
    font-weight: 600 !important;
    color: #17673a;
}

.form-control {
    border: 2px solid #c4dfd0 !important;
    background-color: #f3fff8 !important;
    padding: 10px 15px 10px 45px !important;
    height: 50px !important;
    border-radius: 0.75rem !important;
    color: #346b47 !important;
    font-weight: 500 !important;
    word-spacing: -2px;
}

.form-control:focus {
    background-color: #f3fff8 !important;
    border: 2px solid #68b406 !important;
    box-shadow: 0 0 0 3px #68b4061c !important;
}

.input-field-group .text-danger {
    color: #f53648 !important;
    font-size: 15px;
    font-weight: 500 !important;
    text-align: right;
    top: 2px;
    position: relative;
    right: 0px;
}

.eye-toggle-field {
    position: absolute;
    right: 65px;
}

.forgot-password-sec {
    margin: 1.5rem 0px;
    display: flex;
    justify-content: space-between;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #17673a;
    border-radius: 4px;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.remember-me input[type="checkbox"] {
    display: none;
}

.remember-me input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #17673a;
    border-color: #17673a;
}

.remember-me input[type="checkbox"]:checked + .custom-checkbox::after {
    content: "✓";
    position: absolute;
    top: -3px;
    left: 2px;
    font-size: 14px;
    color: #fff;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 0px !important;
}

.remember-text {
    font-weight: 600 !important;
    color: #17673a;
    font-size: 15px;
    line-height: 1rem;
}

.forgot-link {
    color: #17673a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.login-link {
    color: #17673a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: center;
}

.forgot-link:hover, .login-link:hover {
    color: #0d3d22;
    text-decoration: underline;
}

.login-btn {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 200ms ease;
    background-color: #17673a;
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.login-btn:hover {
    background-color: #0d3d22;
}

.login-btn:focus {
    outline: none;
}
