/* Login css */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-image: linear-gradient(rgba(15, 133, 34, 0.1), rgba(15, 133, 34, 0.1));
        }

        .login-container {
            width: 100%;
            max-width: 400px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(15, 133, 34, 0.2);
            position: relative;
        }

        .back-to-home {
            position: absolute;
            top: 15px;
            left: 15px;
            color: #ffffff;
            font-size: 1.2rem;
            z-index: 10;
        }

        .login-header {
            background-color: #0f8522;
            color: white;
            padding: 30px 20px;
            text-align: center;
            position: relative;
        }

        .login-header .logo {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }

        .login-header h1 {
            font-size: 24px;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .login-header p {
            font-size: 14px;
            opacity: 0.9;
        }

        .login-form {
            padding: 25px 30px;
        }

        .input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .input-group i {
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            color: #0f8522;
        }

        .input-group input {
            width: 100%;
            padding: 12px 12px 12px 40px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .input-group input:focus {
            outline: none;
            border-color: #0f8522;
            box-shadow: 0 0 0 3px rgba(15, 133, 34, 0.2);
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 13px;
        }

        .remember-forgot label {
            display: flex;
            align-items: center;
            color: #555;
            cursor: pointer;
        }

        .remember-forgot input {
            margin-right: 5px;
        }

        .remember-forgot a {
            color: #0f8522;
            text-decoration: none;
        }

        .remember-forgot a:hover {
            text-decoration: underline;
        }

        .login-btn, .back-btn {
            width: 100%;
            text-align: center;
            padding: 12px;
            background-color: #0f8522;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-bottom: 15px;
            display: block; /* Ensure each button is on its own line */
        }

        .login-btn:hover, .back-btn:hover {
            background-color: #0c6e1d;
        }

        .login-footer {
            text-align: center;
            padding: 15px;
            background-color: #f9f9f9;
            color: #666;
            font-size: 12px;
            border-top: 1px solid #eee;
        }

        .error-message {
            color: #dc3545;
            text-align: center;
            margin-bottom: 15px;
            font-size: 14px;
        }

        @media (max-width: 480px) {
            .login-container {
                margin: 20px;
                border-radius: 10px;
            }
            
            .login-header {
                padding: 20px 15px;
            }
            
            .login-form {
                padding: 20px;
            }
        }
        
        
/* forgot_password */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-image: linear-gradient(rgba(15, 133, 34, 0.1), rgba(15, 133, 34, 0.1));
        }

        .forgot-container {
            width: 100%;
            max-width: 450px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(15, 133, 34, 0.2);
        }

        .forgot-header {
            background-color: #0f8522;
            color: white;
            padding: 25px 20px;
            text-align: center;
        }

        .forgot-header .logo {
            width: 70px;
            height: 70px;
            margin-bottom: 15px;
        }

        .forgot-header h1 {
            font-size: 22px;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .forgot-header p {
            font-size: 14px;
            opacity: 0.9;
        }

        .forgot-form {
            padding: 25px 30px;
        }

        .input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .input-group i {
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            color: #0f8522;
        }

        .input-group input {
            width: 100%;
            padding: 12px 12px 12px 40px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .input-group input:focus {
            outline: none;
            border-color: #0f8522;
            box-shadow: 0 0 0 3px rgba(15, 133, 34, 0.2);
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: #0f8522;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background-color: #0c6e1d;
        }

        .back-to-login {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
        }

        .back-to-login a {
            color: #0f8522;
            text-decoration: none;
            font-weight: 600;
        }

        .back-to-login a:hover {
            text-decoration: underline;
        }

        .message {
            padding: 15px;
            margin: 15px 0;
            border-radius: 5px;
            text-align: center;
        }

        .success-message {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .error-message {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        @media (max-width: 480px) {
            .forgot-container {
                margin: 20px;
                border-radius: 10px;
            }
            
            .forgot-header {
                padding: 20px 15px;
            }
            
            .forgot-form {
                padding: 20px;
            }
        }