        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        
        body {
            background-color: #f5f5f7;
            color: #1d1d1f;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 480px;
        }
        
        .header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .logo {

			margin:auto;
        }
		
        .logo-subtitle {
            font-size: 14px;
            font-weight: 400;
            color: #86868b;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        
        .card {
            background-color: #ffffff;
            border-radius: 18px;
            padding: 40px;
            width: 100%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e0e0e0;
        }
        
        .card-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1d1d1f;
        }
        
        .card-subtitle {
            font-size: 15px;
            color: #86868b;
            margin-bottom: 28px;
            line-height: 1.4;
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: #1d1d1f;
        }
        
        .input-container {
            position: relative;
        }
        
        .form-input {
            width: 100%;
            padding: 14px 16px;
            font-size: 16px;
            border: 1px solid #d2d2d7;
            border-radius: 12px;
            background-color: #fbfbfd;
            transition: all 0.2s;
            outline: none;
        }
        
        .form-input:focus {
            border-color: #13426B;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
        }
        
        .form-input::placeholder {
            color: #c2c2c7;
        }
        
        .btn {
            width: 100%;
            padding: 14px;
            font-size: 16px;
            font-weight: 500;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 8px;
        }
        
        .btn-primary {
            background-color: #14b18e;
            color: white;
        }
        
        .btn-primary:hover {
			 background-color: #4e9a89;			
        }
        
        .btn-primary:active {
            background-color: #004299;
            transform: scale(0.98);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: #14b18e;
            margin-top: 16px;
        }
         .btn-secondary a {
            color: #14b18e;
        }

        
        .btn-secondary:hover {
            background-color: rgba(0, 122, 255, 0.05);
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 24px 0;
            color: #86868b;
        }
        
        .divider::before, .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .divider span {
            padding: 0 12px;
            font-size: 13px;
        }
        
        .footer {
            margin-top: 32px;
            text-align: center;
            font-size: 13px;
            color: #86868b;
        }
        
        .footer a {
            color: #13426B;
            text-decoration: none;
        }
        
        .footer a:hover {
            text-decoration: underline;
        }
        
        .error-message {
            background-color: #d4edda;
            border: 1px solid #db0000;
            color: #db0000;
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 24px;
            font-size: 15px;
        }
        
        .error-message i {
            color: #28a745;
            margin-right: 8px;
        }
        
        .email-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #86868b;
        }
        
        @media (max-width: 600px) {
            .card {
                padding: 32px 24px;
            }
            
            .container {
                padding: 0;
            }
        }