body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 60px;
    border-bottom: 1px solid #C4B7A6;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 100px;
    height: 100px;
    padding-left: 20px;
}

.site-name {
    font-size: 24px;
    margin-left: auto;
    color: #046A38;
}

.contact-us {
    color: #2E2E2E;
    text-decoration: none;
    font-size: 18px;
    padding-right: 55px;
}

.login-container {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(4, 106, 56, 0.1);
    border: 1px solid #C4B7A6;
    text-align: center;
    width: 400px;
    margin-top: 80px;
}

.google-btn {
    color: #2E2E2E !important;
    border: 1px solid #C4B7A6;
    background-color: #FFFFFF;
    text-decoration: none !important;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.google-btn span {
    text-decoration: none !important;
    color: black;
}

.google-btn:hover {
    background-color: #046A38;
    border-color: #046A38;
    color: #FFFFFF !important;
}

.google-btn:hover span {
    color: #FFFFFF;
}

.google-btn::before {
    content: none;
}

.google-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #046A38;
}

.or-separator {
    font-size: 14px;
    color: #2E2E2E;
    margin: 20px 0;
    position: relative;
}

.or-separator::before,
.or-separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #C4B7A6;
}

.or-separator::before {
    left: 0;
}

.or-separator::after {
    right: 0;
}

.instruction {
    font-size: 16px;
    margin-bottom: 5px;
    color: #2E2E2E;
}

.sub-instruction {
    font-size: 12px;
    color: #2E2E2E;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 10px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #C4B7A6;
    border-radius: 5px;
    font-size: 14px;
    color: #2E2E2E;
}

input:focus {
    border-color: #046A38;
    outline: none;
    box-shadow: 0 0 5px rgba(4, 106, 56, 0.2);
}

.forgot-password {
    display: block;
    text-align: right;
    color: #046A38;
    font-size: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.continue-btn {
    background-color: #046A38;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}

.continue-btn:hover {
    background-color: #B3A580;
}

.create-account {
    font-size: 12px;
    color: #2E2E2E;
}

.create-account a {
    color: #046A38;
    text-decoration: none;
}

.create-account a:hover {
    text-decoration: underline;
}

.error-message {
    color: #dc3545;
    margin-bottom: 10px;
    font-size: 14px;
}
.error-text {
      color: red;
      font-size: 0.9rem;
      margin-top: 5px;
}